JS正则替换掉小括号及内容的方法
程序员文章站
2022-05-04 14:37:23
...
正则表达式:\ ( [ ^ \ ) ] * \ )
JS代码:
var str="hello(world)"; var nstr = str.replace(/\([^\)]*\)/g,"");