Oracle正则表达式小试用
时间:2010-12-17 来源:hero--008
去除字符串中匹配模式的内容,比如:
'hello word(123) test(20101217)'
这个字符串,我想把后面的(20101217)去掉,正则应该如何写呢?
SQL> select regexp_replace('hello word(123) test(20101217)', '\([0-9]*\)$') |
相关阅读 更多 +