如何在javascript中替换所有%s字符串

时间:2012-07-26 07:52:40

标签: javascript regex

  

可能重复:
  JavaScript equivalent to printf/string.format
  replace all occurrences in a string

看标题。请参阅以下变量,如何将所有'%s'替换为其他字符串?

var s = 'qwer%sqwer%s';

请咨询

4 个答案:

答案 0 :(得分:4)

使用.replace方法。

var s = 'qwer%sqwer%s';
s = s.replace(/%s/g, 'other');

答案 1 :(得分:0)

试试这个:

s.replace(/%s/g,'x')

答案 2 :(得分:0)

您可以使用replace()函数替换字符串 实施例

 var getnewstring = s.replace("%s","YOUR STRING");

答案 3 :(得分:0)

使用.replace方法

var s = 'qwer%sqwer%s';
s=s.replace('%s','your string')
document.write(s);