hive--去除特殊字符regexp_replace

文章目录

  • regexp_replace
    • `'\t abc \n def \r hij'`→ `' abc def hij'`
    • `'\t abc \n def \r hij'`→`'abcdefhij'`
  • 看一下其他的情况

regexp_replace

'\t abc \n def \r hij'' abc def hij'

select regexp_replace('\t abc \n def \r hij', '\n|\t|\r|', ''); 
  • ' abc def hij'

'\t abc \n def \r hij''abcdefhij'

select regexp_replace('\t abc \n def \r hij', '\n|\t|\r| |', '');
  • 'abcdefhij'
  • 解释
    • \t:tab,跳格(移至下一列)
    • \r:回车
    • \n:换行

看一下其他的情况

  • select trim('中文空格 dsfs ');
    • '中文空格 dsfs'
  • select trim('英文空格 dsfs ');
    • '英文空格 dsfs'
  • select replace('asdas dsfs ',' ','');
    • SemanticException Line 0:-1 Invalid function 'replace'
  • select regexp_replace('中文空格 dsfs ',' ','');
    • '中文空格dsfs'
  • select regexp_replace('英文空格 dsfs ',' ','');
    • '英文空格dsfs'

你可能感兴趣的:(一些杂项,replace,hive去特殊字符)