在JavaScript中,如何使用该数字+ 20
替换字符串中的每个数字?
所以,这个字符串:"min: 300px and max: 600px, min: 800px"
最终会以"min: 320px and max: 620px, min: 820px"
答案 0 :(得分:12)
也许最短的版本:
"min: 300px and max: 600px, min: 800px".replace(/\d+/g, function(c) {
return parseInt(c, 10) + 20;
});