我正在寻找一个JavaScript正则表达式,允许我删除括号中的任何文本并包含括号本身。
示例:
"hello world ( some Text and Number here)"
我想修剪( some Text and Number here)
并得到结果:
"hello world"
答案 0 :(得分:2)
你试过这个吗:
\(.*?\)
实际的js可能就像dis:
var a = "hello world ( someText and Number here)";
a = a.replace(/\(.*?\)/, "");