标签: javascript
让我们说' Ben-Hur(2016)'。我想删除“(2016)”。我只需要 Ben-Hur 。
答案 0 :(得分:1)
使用 String#replace 方法
String#replace
console.log( 'Ben-Hur (2016)'.replace(/\(\d+\)/g, '') )
仅供参考:如果您要删除空格,请使用/\s*\(\d+\)\s*/g正则表达式。
/\s*\(\d+\)\s*/g