oracleRegex函數之REGEXP_REPLACE和REGEXP_SUBSTR

來源:互聯網
上載者:User

前面我們介紹了oracle中Regex的基本元字元和常用的兩個函數regexp_like 和 regexp_instr。這裡我們再繼續介紹剩下的兩個Regex函數regexp_replace和regexp_substr。

regexp_replace函數和regexp_substr函數的功能類似與字元函數replace和substr,只是這裡的應用更加靈活,可以一下子匹配一系列的結果,而原來的函數只能一下子匹配一個固定的字元換。

具體來講:
regexp_replace的意義是找到於給定模式比對的字串並用其他的字串來替代。
其原型是:regexp_replace(x,pattern[,replace_string[,start[,occurence[match_option]]]])
每個參數的意思分別是:
x 待匹配的函數
pattern Regex元字元構成的匹配模式
replace_string 替換字串
start 開始位置
occurence 匹配次數
match_option 匹配參數,這裡的匹配參數和regexp_like是完全一樣的,可參考前面的一篇文章。

舉例來講:
select regexp_replace(’hello everybody,may I have your attention please?’,'b[[:alpha:]]{3}’,'one’) from dual將會返回結果:
hello everyone,may I have your attention please?

而regexp_substr函數的意義找出與給定模式比對的字串並返回,
其原型是:regexp_substr(x,pattern[,start[,occurence[match_option]]])
這裡各參數的意義與前面的函數regexp_replace的含義是一樣做的。
regexp_substr的例子如下:
select regexp_substr(’I love oracle very much’,'o[[:alpha:]]{5}’) from dual;
這裡將會匹配出結果:
oracle來。這也是這個函數的返回結果。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.