标签: javascript regex
我需要在Javascript中使用Regex替换两个括号之间的文本。例如:
var x =“我需要去(现在)”;
我需要将'now'替换为'明天'。我试过这个,但它不起作用:
x.replace(/\(now)\b/g, 'tomorrow');
答案 0 :(得分:3)
"I need to know (now)".replace(/\(now\)/g, 'tomorrow');
您不需要\b而需要转义第二个)。
\b
)