熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Oracle >> 正文

Oracle正則表達式小試用

2022-06-13   來源: Oracle 

  去除字符串中匹配模式的內容比如

  hello word() test()

  這個字符串我想把後面的()去掉正則應該如何寫呢?

  SQL> select regexp_replace(hello word() test() \([]*\)$)

   from dual;

  REGEXP_REPLACE(HELLOWORD()

  

  hello word() test

  SQL>

  SQL> select regexp_replace(hello word() test()

   *([\(\)]{})$

   \)

   from dual

   ;

  REGEXP_REPLACE(HELLOWORD()

  

  hello word() test

  SQL>


From:http://tw.wingwit.com/Article/program/Oracle/201311/18894.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.