我在hive表中有一个列有这种格式的数据 -
col1 col2 att
我希望数据以这种格式显示 - 国际电话每次拨打5美元 国际电话每次拨打5美元
基本上删除所有标签。的想法!
答案 0 :(得分:0)
使用regexp_replace功能怎么样?
SELECT regexp_replace(text,"</?[^>]*>","") FROM table;
例如:
hive> SELECT regexp_replace("< html >my text</html> <br>fd<br>","</?[^>]*>","");
OK
my text fd