去除字符串中匹配模式的内容比如
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>