从配置单元中的文本列中提取子字符串

pcrecxhr  于 2021-06-27  发布在  Hive
关注(0)|答案(1)|浏览(382)

我们在一个名为title的列中有文本数据,如下所示

"id":"S-1-98-13474422323-33566802","name":"uid=Xzdpr0,ou=people,dc=vm,dc=com","shortName":"XZDPR0","displayName":"Jund Lee","emailAddress":"jund.lee@bm.com","title":"Leading Product Investor"

只需要从hive中的上述文本数据中提取显示名(本例中为jund lee),我尝试过使用substring函数,但似乎不起作用,请帮助

ecbunoof

ecbunoof1#

将regexp\u extract函数与 matching regex只捕获 displayName 从你的 title 字段值。
前任:

hive> with tb as(select string('"id":"S-1-98-13474422323-33566802",
         "name":"uid=Xzdpr0,ou=people,dc=vm,dc=com","shortName":"XZDPR0",
         "displayName":"Jund Lee","emailAddress":"jund.lee@bm.com",
         "title":"Leading Product Investor"')title) 
     select regexp_extract(title,'"displayName":"(.*?)"',1) title from tb;

+-----------+--+
|   title   |
+-----------+--+
| Jund Lee  |
+-----------+--+

相关问题