在HIVE中查找功能

时间:2015-08-10 18:11:54

标签: find hive

我想检查字段是否包含字符串。

我想要一个看起来像这样的函数:

FIND("string_to_find",field_to_search)

我的数据如下:

field_to_search
---------------
"no match in this string"
"record 2 has no matches"
"ahh finally xxxstring_to_findxxx is here"

我正在寻找一个函数来识别包含指定字符串以及字符串开始的位置。

return
------
-1
-1
15

2 个答案:

答案 0 :(得分:3)

内置的locate函数几乎完全符合您的需要,除了对于您的输入,它将返回

return
------
0
0
16

因为它从1开始索引所以你需要做的就是:

Select locate("string_to_find","ahh finally xxxstring_to_findxxx is here") -1; --returns 15
Select locate("string_to_find","foo") -1; --returns -1

答案 1 :(得分:0)

这可以通过在hive中使用 instr if 来实现。

select if(instr(line,"xxxstring_to_findxxx")==0,-1,instr(line,"xxxstring_to_findxxx")) as position from find_tbl;  

其中line是您的列名