我有带有额外空格字符的字符串。每次有多个空格时,我希望它只有一个。如何使用 JavaScript 做到这一点?
像这样的东西:
var s = " a b c "; console.log( s.replace(/\s+/g, ' ') )