ORACLE 常用Regex詳解

來源:互聯網
上載者:User

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

  1。regexp_like

  2。regexp_substr

  3。regexp_instr

  4。regexp_replace

  看函數名稱大概就能猜到有什麼用了。

  regexp_like 只能用於條件運算式,和 like 類似,但是使用的Regex進行匹配,文法很簡單:

  regexp_substr 函數,和 substr 類似,用於拾取合符Regex描述的字元子串,文法如下:

  regexp_instr函數,和 instr 類似,用於標定符合Regex的字元子串的開始位置,文法如下:

  regexp_replace 函數,和 replace 類似,用於替換符合Regex的字串,文法如下:

  這裡解析一下幾個參數的含義:

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

  2。pattern,Regex。

  3。match_parameter,匹配選項。

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

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

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

  6。replace_string,替換的字串。

  '' 轉義符。

  字元簇:

  [[:alpha:]] 任何字母。

  [[:digit:]] 任何數字。

  [[:alnum:]] 任何字母和數字。

  [[:space:]] 任何白字元。

  [[:upper:]] 任何大寫字母。

  [[:lower:]] 任何小寫字母。

  [[unct:]] 任何標點符號。

  [[:xdigit:]] 任何16進位的數字,相當於[0-9a-fA-F]。

  各種操作符的運算優先順序

  轉義符

  (), (?, (?=), [] 圓括弧和方括弧

  *, +, ?, {n}, {n,}, {n,m} 限定符

  ^, $, anymetacharacter 位置和順序

  | “或”操作

  --測試資料

  create table test(mc varchar2(60));

  insert into test values('112233445566778899');

  insert into test values('22113344 5566778899');

  insert into test values('33112244 5566778899');

  insert into test values('44112233 5566 778899');

  insert into test values('5511 2233 4466778899');

  insert into test values('661122334455778899');

  insert into test values('771122334455668899');

  insert into test values('881122334455667799');

  insert into test values('991122334455667788');

  insert into test values('aabbccddee');

  insert into test values('bbaaaccddee');

  insert into test values('ccabbddee');

  insert into test values('ddaabbccee');

  insert into test values('eeaabbccdd');

  insert into test values('ab123');

  insert into test values('123xy');

  insert into test values('007ab');

  insert into test values('abcxy');

  insert into test values('The final test is is is how to find duplicate words.');

  commit;

  一、REGEXP_LIKE

  select * from test where regexp_like(mc,'^a{1,3}');

  select * from test where regexp_like(mc,'a{1,3}');

  select * from test where regexp_like(mc,'^a.*e$');

  select * from test where regexp_like(mc,'^[[:lower:]]|[[:digit:]]');

  select * from test where regexp_like(mc,'^[[:lower:]]');

  Select mc FROM test Where REGEXP_LIKE(mc,'[^[:digit:]]');

  Select mc FROM test Where REGEXP_LIKE(mc,'^[^[:digit:]]');

  二、REGEXP_INSTR

  Select REGEXP_INSTR(mc,'[[:digit:]]$') from test;

  Select REGEXP_INSTR(mc,'[[:digit:]]+$') from test;

  Select REGEXP_INSTR('The price is $400.','$[[:digit:]]+') FROM DUAL;

  Select REGEXP_INSTR('onetwothree','[^[[:lower:]]]') FROM DUAL;

  Select REGEXP_INSTR(',,,,,','[^,]*') FROM DUAL;

  Select REGEXP_INSTR(',,,,,','[^,]') FROM DUAL;

  三、REGEXP_SUBSTR

  SELECT REGEXP_SUBSTR(mc,'[a-z]+') FROM test;

  SELECT REGEXP_SUBSTR(mc,'[0-9]+') FROM test;

  SELECT REGEXP_SUBSTR('aababcde','^a.*b') FROM DUAL;

  四、REGEXP_REPLACE

  Select REGEXP_REPLACE('Joe Smith','( ){2,}', ',') AS RX_REPLACE FROM dual;

  Select REGEXP_REPLACE('aa bb cc','(.*) (.*) (.*)', '3, 2, 1') FROM dual;

        :更多精彩文章請關注三聯編程教程欄目。

相關文章

聯繫我們

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