📌  相关文章
📜  javascript 从字符串中删除多个逗号 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:35.157000             🧑  作者: Mango

代码示例3
/[,\s]+|[,\s]+/g

var str= "your string here";
//this will be new string after replace
str = str.replace(/[,\s]+|[,\s]+/g, 'your string here');