如何将空格转换为?

时间:2009-07-23 07:20:18

标签: javascript

如果不使用正则表达式,如何将空格转换为 

2 个答案:

答案 0 :(得分:16)

你可以使用

在没有正则表达式的情况下进行

"This is a string".split(" ").join(" ");

答案 1 :(得分:11)

"this is a string".replace(/\s/g, ' ')