文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>Oracle正则表达式小试用

Oracle正则表达式小试用

时间:2010-12-17  来源:hero--008

去除字符串中匹配模式的内容,比如: 'hello word(123) test(20101217)' 这个字符串,我想把后面的(20101217)去掉,正则应该如何写呢?

SQL> select regexp_replace('hello word(123) test(20101217)', '\([0-9]*\)$')
  2 from dual;
 
REGEXP_REPLACE('HELLOWORD(123)
------------------------------
hello word(123) test
 
SQL>
SQL> select regexp_replace('hello word(123) test(20101217)',
  2 '*([\(0-9\)]{1,})$',
  3 '\2')
  4 from dual
  5 ;
 
REGEXP_REPLACE('HELLOWORD(123)
------------------------------

hello word(123) test
 
SQL>


相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载