【Hive】split函数(分割字符串)

匿名 (未验证) 提交于 2019-12-03 00:18:01

语法: split(string str, string pat)
返回值: array
说明: 按照pat字符串分割str,会返回分割后的字符串数组
举例:
1.基本用法

hive> select split('abcdef', 'c') from test; ["ab", "def"]

2.截取字符串中的某个值

hive> select split('abcdef', 'c')[0] from test; ab

3.特殊字符
如正则表达式中的特殊符号作为分隔符时,需做转义 (前缀加上\)

hive> select split('ab_cd_ef', '\_')[0] from test; ab hive> select split('ab?cd_ef', '\\?')[0] from test; ab

如果是在shell中运行,则(前缀加上\\)

hive -e "select split('ab?cd_ef', '\\\\?')[0] from test" 
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!