我的字符串带有多余的空格,每当有多个空格时,我希望它只有一个。
任何人?我尝试搜索Google,但没有任何帮助。
谢谢
像这样:
var s = " a b c "; console.log( s.replace(/\s+/g, ' ') )