当前位置: 代码迷 >> JavaScript >> 怎么将连续的空格为了一个空格
  详细解决方案

怎么将连续的空格为了一个空格

热度:326   发布时间:2012-02-08 19:52:21.0
如何将连续的空格为了一个空格?
var   s   =   "a           b   c                                   d "

如何让s变为:

s   =   "a   b   c   d "



谢谢

------解决方案--------------------
<script>
var str = "a b c d "
var re=/\s+/g;
str=str.replace(re, " ");
alert(str);
</script>
  相关解决方案