oracle regexp_replace 正则表达式的使用

http://docs.oracle.com/cd/B19306_01/server.102/b14200/functions130.htm

REGEXP_REPLACE

Syntax

Description of regexp_replace.gif follows
Description of the illustration regexp_replace.gif

Purpose

REGEXP_REPLACE extends the functionality of the REPLACE function by letting you search a string for a regular expression pattern. By default, the function returns source_char with every occurrence of the regular expression pattern replaced with replace_string. The string returned is in the same character set as source_char. The function returns VARCHAR2 if the first argument is not a LOB and returns CLOB if the first argument is a LOB.

This function complies with the POSIX regular expression standard and the Unicode Regular Expression Guidelines. For more information, please refer to Appendix C, "Oracle Regular Expression Support".

  • source_char is a character expression that serves as the search value. It is commonly a character column and can be of any of the datatypes CHAR, VARCHAR2, NCHAR, NVARCHAR2, CLOB or NCLOB.

  • pattern is the regular expression. It is usually a text literal and can be of any of the datatypes CHAR, VARCHAR2, NCHAR, or NVARCHAR2. It can contain up to 512 bytes. If the datatype of pattern is different from the datatype of source_char, Oracle Database converts pattern to the datatype of source_char. For a listing of the operators you can specify in pattern, please refer to Appendix C, "Oracle Regular Expression Support".

  • replace_string can be of any of the datatypes CHAR, VARCHAR2, NCHAR, NVARCHAR2, CLOB, or NCLOB. If replace_string is a CLOB or NCLOB, then Oracle truncates replace_string to 32K. The replace_string can contain up to 500 backreferences to subexpressions in the form \n, where n is a number from 1 to 9. If n is the backslash character in replace_string, then you must precede it with the escape character (\\). For more information on backreference expressions, please refer to the notes to "Oracle Regular Expression Support", Table C-1.

  • position is a positive integer indicating the character of source_char where Oracle should begin the search. The default is 1, meaning that Oracle begins the search at the first character of source_char.

  • occurrence is a nonnegative integer indicating the occurrence of the replace operation:

    • If you specify 0, then Oracle replaces all occurrences of the match.

    • If you specify a positive integer n, then Oracle replaces the nth occurrence.

  • match_parameter is a text literal that lets you change the default matching behavior of the function. This argument affects only the matching process and has no effect on replace_string. You can specify one or more of the following values for match_parameter:

    • 'i' specifies case-insensitive matching.

    • 'c' specifies case-sensitive matching.

    • 'n' allows the period (.), which is the match-any-character character, to match the newline character. If you omit this parameter, the period does not match the newline character.

    • 'm' treats the source string as multiple lines. Oracle interprets ^ and $ as the start and end, respectively, of any line anywhere in the source string, rather than only at the start or end of the entire source string. If you omit this parameter, Oracle treats the source string as a single line.

    • 'x' ignores whitespace characters. By default, whitespace characters match themselves.

    If you specify multiple contradictory values, Oracle uses the last value. For example, if you specify 'ic', then Oracle uses case-sensitive matching. If you specify a character other than those shown above, then Oracle returns an error.

    If you omit match_parameter, then:

    • The default case sensitivity is determined by the value of the NLS_SORT parameter.

    • A period (.) does not match the newline character.

    • The source string is treated as a single line.

      See Also:

      • REPLACE

      • REGEXP_INSTR, REGEXP_SUBSTR, and REGEXP_LIKE Condition


        ------转发例子

        全部测试数据

        SQL> select * from test_reg_substr;

        A

        -----------------------------------

        ABC123XYZ

        ABC123XYZ456

        <Name>Edward</Name>

         

        替换数字

        SQL> SELECT

         2    REGEXP_REPLACE (a,'[0-9]+','QQQ')  AS A

         3  FROM

         4    test_reg_substr;

        A

        -----------------------------------------------

        ABCQQQXYZ

        ABCQQQXYZQQQ

        <Name>Edward</Name> 

         

        替换数字(从第一个字母开始匹配,替换第1个匹配项目)

        SQL> SELECT

         2    REGEXP_REPLACE (a,'[0-9]+','QQQ', 1, 1)  AS A

         3  FROM

         4    test_reg_substr;

        A

        ------------------------------------------------------

        ABCQQQXYZ

        ABCQQQXYZ456

        <Name>Edward</Name>

         

        替换数字(从第一个字母开始匹配,替换第2个匹配项目)

        SQL> SELECT

         2    REGEXP_REPLACE (a,'[0-9]+','Q', 1, 2)  AS A

         3  FROM

         4    test_reg_substr;

        A

        ---------------------------------------------------

        ABC123XYZ

        ABC123XYZQ

        <Name>Edward</Name>

         

        替换第二个单词

        SQL> SELECT

         2    REGEXP_REPLACE (a,'\w+','Kimi', 1, 2)  AS A

         3  FROM

         4    test_reg_substr;

        A

        ---------------------------------------------------

        ABC123XYZ

        ABC123XYZ456

        <Name>Kimi</Name>


        替换掉大写字母,小写字母,数字 0-9  为空

          select  regexp_replace(regexp_replace(regexp_replace(string_In,'[A-Z]',''),'[0-9]',''),'[a-z]','')
          INTO V_RETURN from dual





  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值