如何在 Javascript 中分割空格分隔的字符串并移除多余的逗号和空格?


假设我们的字符串如下:-

var sentence = "My,,,,,,, Name,,,, is John ,,, Smith";

使用正则表达式以及 split() 和 join() 来去除多余的空格和逗号。以下是代码:-

示例

var sentence = "My,,,,,,, Name,,,, is John ,,, Smith";
console.log("Before removing extra comma and space="+sentence);
sentence = sentence.split(/[\s,]+/).join();
console.log("After removing extra comma and space=");
console.log(sentence)

要运行上述程序,你需要使用以下命令:-

node fileName.js.

输出

这里,我的文件名是 demo133.js。这将产生以下输出:-

PS C:\Users\Amit\JavaScript-code> node demo133.js
Before removing extra comma and space=My,,,,,,, Name,,,, is John ,,, Smith
After removing extra comma and space=
My,Name,is,John,Smith

更新于: 11-Sep-2020

332 次浏览

开始你的 职业生涯

完成课程并获得认证

开始
广告
© . All rights reserved.