我有这个字符串:“ abcdef; abcdef”
我需要选择这一部分:
“; abcdef”
喜欢:
“ abcdef ; abcdef
”
我需要从这里开始;结束字符串
答案 0 :(得分:1)
代码:
const regex = /(.*)(;\s\w+)/gm;
const str = `abcdef; abcdef`;
const subst = `$1 $2`;
// The substituted value will be contained in the result variable
const result = str.replace(regex, subst);
console.log('Substitution result: ', result);