我想将数字和字符(%)替换为" 投票"在javascript但问题是数字总是随机改变
我有这个:
VOTED = VOTED.replace('100%','Voted');
所以任何人都知道如何解决这个问题并提前感谢:)
答案 0 :(得分:4)
您可以使用String.replace(regex, replace)
const myText = '15% test';
const newText = myText.replace(/\d+%/, 'Voted');
console.log(newText);