共用方式為


regexp_replace函式

適用於:核取記號為「是」Databricks SQL 核取記號為「是」Databricks Runtime

str 取代 regexp 中所有符合 rep 的子字串。

語法

regexp_replace(str, regexp, rep [, position] )

引數

  • str STRING:要比對的表達式。
  • regexp STRING:具有相符模式的表達式。
  • rep:取代 STRING 字串的運算式。
  • position:一個可選的整數數值常值,大於0,表示從 where 開始匹配。 預設值是 1。

傳回

STRING

字串 regexp 必須是Java正則表達式。

使用常值時,請使用 raw-literalr prefix) 以避免逸出字元前置處理。

搜尋會從 開始 position。 默認值為 1,其會標記 的 str開頭。 如果 position 超過 的 str字元長度,則結果為 str

範例

> SELECT regexp_replace('100-200', '(\\d+)', 'num');
 num-num