赞
踩
这几天处理存储于json字段中的html文本,碰到特殊字符导致数据与字段错位,很是烦躁。
\t:tab,跳格(移至下一列)
\r:回车
\n:换行
解决方法:
1、修改表存储格式<失败>
2、regexp_replace<替换>
hive> select regexp_replace('\t abc \n def \r hij', '\n|\t|\r', '');
在网上搜索到解决案例如下:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。