在String中的字符之间添加空格

时间:2011-09-15 20:59:43

标签: javascript string

  

可能重复:
  String Manipulation - Javascript -

我有一个字符串:

hello

我希望在每个角色之间添加一个空格来给出:

h e l l o

这样做的最佳方式是什么?

3 个答案:

答案 0 :(得分:64)

"hello".split('').join(' '); // "h e l l o"

答案 1 :(得分:3)

var text = "hello";
var betweenChars = ' '; // a space

alert(text.split('').join(betweenChars));

答案 2 :(得分:3)

尝试:

var hello = 'hello';
var test = '';

for(var i=0; i<hello.length; i++){
   test += hello.charAt(i) + ' ';     
}

alert(test);