关于regex:如何在javascript中替换字符串中的所有空格  和

How to replace all &nbsp; and <br> from a string in javascript?

本问题已经有最佳答案,请猛点这里访问。

我有一根绳子,假设:

1
var str ="&nbsp; &nbsp;&nbsp;"

要用空字符串替换此regex,请执行以下操作:

1
str.replace(/^(&nbsp;|)+/, '');

这只是删除第一个nbsp;。剩下的两个还在那里。有人能帮我把所有出现的nbsp;从字符串中删除吗?


在正则表达式中使用g标志("global")替换所有匹配项,而不是第一个匹配项:

1
str.replace(/ <your pattern here> /g,"");