数据库

位置:IT落伍者 >> 数据库 >> 浏览文章

Oracle正则表达式小试用


发布日期:2018年07月22日
 
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>

               

上一篇:oracle单独导出序列方法

下一篇:pl/sql查询字段为科学计数法