真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

oracle正則表達式4個主要函數(shù)

Oracle使用正則表達式4個主要函數(shù):

公司主營業(yè)務(wù):網(wǎng)站建設(shè)、成都做網(wǎng)站、移動網(wǎng)站開發(fā)等業(yè)務(wù)。幫助企業(yè)客戶真正實現(xiàn)互聯(lián)網(wǎng)宣傳,提高企業(yè)的競爭能力。創(chuàng)新互聯(lián)是一支青春激揚、勤奮敬業(yè)、活力青春激揚、勤奮敬業(yè)、活力澎湃、和諧高效的團隊。公司秉承以“開放、自由、嚴謹、自律”為核心的企業(yè)文化,感謝他們對我們的高要求,感謝他們從不同領(lǐng)域給我們帶來的挑戰(zhàn),讓我們激情的團隊有機會用頭腦與智慧不斷的給客戶帶來驚喜。創(chuàng)新互聯(lián)推出丹寨免費做網(wǎng)站回饋大家。

1、regexp_like 只能用于條件表達式,和 like 類似,但是使用的正則表達式進行匹配,語法很簡單:

oracle 正則表達式4個主要函數(shù)

2、regexp_substr 函數(shù),和 substr 類似,用于拾取合符正則表達式描述的字符子串,語法如下:

oracle 正則表達式4個主要函數(shù)

3、regexp_instr 函數(shù),和 instr 類似,用于標定符合正則表達式的字符子串的開始位置,語法如下:

oracle 正則表達式4個主要函數(shù)

4、regexp_replace 函數(shù),和 replace 類似,用于替換符合正則表達式的字符串,語法如下:

oracle 正則表達式4個主要函數(shù)

這里解析一下幾個參數(shù)的含義:

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

2、pattern,正則表達式。

3、match_parameter,匹配選項。

取值范圍: i:大小寫不敏感; c:大小寫敏感;n:點號 . 不匹配換行符號;m:多行模式;x:擴展模式,忽略正則表達式中的空白字符。

4、position,標識從第幾個字符開始正則表達式匹配。

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

6、replace_string,替換的字符串。

--創(chuàng)建表及測試數(shù)據(jù)

create table tmp as
with data as (
select 'like' as id ,'a9999' as str from dual union all
select 'like'       ,'a9c'          from dual union all
select 'like'       ,'A7007'        from dual union all
select 'like'       ,'123a34cc'     from dual union all
select 'substr'     ,'123,234,345'  from  dual union all
select 'substr'     ,'12,34.56:78'  from dual union all
select 'substr'     ,'123456789'    from dual union all
select 'instr'      ,'192.168.0.1'  from dual union all
select 'replace'    ,'(020)12345678' from dual union all
select 'replace'    ,'001517729C28' from dual
)
select * from data ;

SELECT * FROM tmp;
--查詢結(jié)果如下

oracle 正則表達式4個主要函數(shù)

--regexp_like 示例
--1.匹配有字母 "a"的字符不區(qū)分大小寫,且匹配任意數(shù)字
\d :匹配任意數(shù)字字符
select str from tmp where id = 'like' and regexp_like(str,'a\d+','i');

oracle 正則表達式4個主要函數(shù)

select str from tmp where id='like' and regexp_like(str, 'a\d+');

oracle 正則表達式4個主要函數(shù)

select str from tmp where id='like' and regexp_like(str,'^a\d+');

oracle 正則表達式4個主要函數(shù)

SELECT str from tmp where id='like' and regexp_like(str,'^a\d+$');

oracle 正則表達式4個主要函數(shù)

--regexp_substr示例1
SELECTstr,
regexp_substr(str,'[^,]+')     str_1_1,
regexp_substr(str,'[^,]+',1,1) str_1_1,
regexp_substr(str,'[^,]+',1,2) str_1_2,  -- occurrence 第幾個匹配組regexp_substr(str,'[^,]+',2,1) str_2_1   -- position 從第幾個字符開始匹配from tmpwhere id='substr';

oracle 正則表達式4個主要函數(shù)

--regexp_substr示例2
SELECTSTR,
REGEXP_SUBSTR(STR, '\d') STR,
REGEXP_SUBSTR(STR, '\d+', 1, 1) STR,
REGEXP_SUBSTR(STR, '\d{2}', 1, 2) STR,
REGEXP_SUBSTR(STR, '\d{3}', 2, 1) STRFROM TMPWHERE ID = 'substr';

oracle 正則表達式4個主要函數(shù)

--regexp_instr示例1
SELECTSTR,
REGEXP_INSTR(STR, '\.') IND,
REGEXP_INSTR(STR, '\.', 1, 2) IND,
REGEXP_INSTR(STR, '\.', 5, 2) INDFROM TMPWHERE ID = 'instr';

oracle 正則表達式4個主要函數(shù)

--regexp_instr示例2
SELECTregexp_instr('192.168.0.1','\.',1,level) ind ,  -- 點號. 所在的位置regexp_instr('192.168.0.1','\d',1,level) ind    -- 每個數(shù)字的位置from dual
connect by level <=  9

oracle 正則表達式4個主要函數(shù)

--regexp_replace示例
SELECT STR,
REGEXP_REPLACE(STR, '020', 'GZ') STR,
REGEXP_REPLACE(STR, '(\d{3})(\d{3})', '<\2\1>') STR 
FROM TMPWHERE ID = 'replace';

oracle 正則表達式4個主要函數(shù)

--綜合示例
WITH SUDOKU AS(SELECT '020000080568179234090000010030040050040205090070080040050000060289634175010000020' AS LINEFROM DUAL),
TMP AS(SELECT REGEXP_SUBSTR(LINE, '\d{9}', 1, LEVEL) ROW_LINE, LEVEL COLFROM SUDOKU
CONNECT BY LEVEL <= 9)SELECT REGEXP_REPLACE(ROW_LINE, '(\d)(\d)(\d)(\d)(\d)(\d)(\d)(\d)(\d)', '\1 \2 \3 \4 \5 \6 \7 \8 \9') ROW_LINEFROM TMP

oracle 正則表達式4個主要函數(shù)

 

源文:https://www.cnblogs.com/suinlove/p/3981454.html


本文題目:oracle正則表達式4個主要函數(shù)
標題網(wǎng)址:http://weahome.cn/article/gjshej.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部