JS正则替换掉小括号及内容

正则表达式:\ ( [ ^ \ ) ] * \ )

JS代码:

var str="hello(world)";
var nstr = str.replace(/\([^\)]*\)/g,""); 

作者:itmyhome

你可能感兴趣的:(js,正则表达式)