我得到了这句话
Tom __ English.
我想找到__
部分并将其更改为某些内容。我该怎么做?
我的示例代码:
var $str = 'Tom __ English.',
$new = $str.match('__');
$new.replaceWith('is');
我想要的输出:
Tom is English.
答案 0 :(得分:1)
只需使用纯JS的replace
var str = 'Tom __ English.';
console.log(str.replace("__", "is"))
希望有所帮助