ORACLE正規運算式

來源:互聯網
上載者:User

[導讀]Oracle使用Regex離不開這4個函數:

Oracle使用Regex離不開這4個函數:

1。regexp_like

2。regexp_substr

-- select regexp_substr('aaa,bb,ccccc,ddd,vvv','[^,]+',1,4) from dual

3。regexp_instr

4。regexp_replace

 

參數

1。source_char,輸入的字串,可以是列名或者字串常量、變數。

2。pattern,Regex。

3。match_parameter,匹配選項。

取值範圍: i:大小寫不敏感; c:大小寫敏感;n:點號 . 不匹配分行符號號;m:多行模式;x:擴充模式,忽略Regex中的空白字元。

4。position,標識從第幾個字元開始Regex匹配。

5。occurrence,標識第幾個匹配組。

6。replace_string,替換的字串。

 

例:

select str from tmp where id='like' and regexp_like(str,'A\d+','i'); -- 'i' 忽略大小寫

regexp_substr(str,'[^,]+')

regexp_instr('192.168.0.1','\d',1,level) ind    -- 每個數位位置

regexp_replace(str,'020','GZ') str,

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.