split切割函数在hive中的应用

split函数是编程语言中使用的一种函数名称,它是指返回一个下标从零开始的一维数组,split函数包含指定数目的子字符串。

split 切割函数
语法: 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 > “select split(‘ab?cd_ef’, ‘\\?’)[0] from test”

你可能感兴趣的:(函数)