hive regexp_replace
时间: 2023-04-28 19:02:57 浏览: 114
hive sql 拆解字段.docx
Hive 中的 regexp_replace 函数可以用于在字符串中替换符合正则表达式的部分。语法如下:
regexp_replace(string, string pattern, string replacement)
其中,string 为要替换的字符串,pattern 为要匹配的正则表达式,replacement 为替换后的字符串。
例如:
SELECT regexp_replace("Hello World!", "World", "China") FROM some_table;
上面的语句将 "Hello World!" 中的 "World" 替换为 "China"。
结果为: "Hello China!"
阅读全文