删除字符串JavaScript中的多余空格?
要删除多余的空格,您需要trim()
与正则表达式一起使用。以下是我们在应用之前的带空格的字符串trim()
-
var sentence="My name is John Smith ";
现在,我们将删除多余的空格,如下面的代码所示:
示例
var sentence="My name is John Smith "; console.log("The actual value="); console.log(sentence); var originalSentence = sentence.replace(/\s+/g,'').trim(); var afterRemovingTheSpace=originalSentence.trim(); console.log("After removing the spaces="); console.log(afterRemovingTheSpace);
要运行以上程序,您需要使用以下命令-
node fileName.js.
在这里,我的文件名为demo90.js。
输出结果
这将产生以下输出-
PS C:\Users\Amit\JavaScript-code> node demo90.js The actual value= My name is John Smith After removing the spaces= MynameisJohnSmith