regexp_replace在snowflake中替换尖括号中的字符

ylamdve6  于 2023-08-08  发布在  其他
关注(0)|答案(1)|浏览(88)
11223335 <!---->
22321<!---->
123<span _ngcontent-pyp-c88="" class="fid ng-star-inserted">/ parent force id: <a _ngcontent-py>
123<span _ngcontent-pyp-c88="" class="fid ng-star-inserted">/ parent force id: <a _ngcontent-py>
12323970 <!---->
123<!---->

字符串
我需要用空字符串替换尖括号中的字符。

select ga_dimension16, regexp_replace(collate(ga_dimension16,''),
'([[:digit:]]{6,7}).>$','')
from stageABC where ga_dimension16 like '%<%'

nhn9ugyo

nhn9ugyo1#

要将尖括号内的字符替换为空字符串,请尝试以下方法:

SELECT
  ga_dimension16,
  REGEXP_REPLACE(ga_dimension16, '<[^>]+>', '') as replaced_ga_dimension16
FROM
  stageABC;

字符串

相关问题