标签: apache-pig
在PL / SQL中,我们有instr预定义函数,它从起始位置返回列中子字符串的第n个位置。 Pig中是否存在类似的功能?
答案 0 :(得分:1)
您可以使用INDEXOF。
INDEXOF
A = LOAD 'file' using PigStorage() as (a:chararray); B = FOREACH A GENERATE INDEXOF(a,'search character',0);