How to replace all and <br> from a string in javascript?
我有一根绳子,假设:
1
| var str =" " |
要用空字符串替换此regex,请执行以下操作:
1
| str.replace(/^( |)+/, ''); |
这只是删除第一个nbsp;。剩下的两个还在那里。有人能帮我把所有出现的nbsp;和从字符串中删除吗?
- 你可能需要在一个循环中运行多次。
- 或者您可以在regex中简单地指定g选项。
- 已在中回答:stackoverflow.com/questions/2513848/hellip;stackoverflow.com/questions/3437757/hellip;stackoverflow.com/questions/25221995/repl ace-nbsp-with-br codereview.stackexchange.com/questions/12454/javascript repl&zwnj;&8203;ace
- ^表示句首。所以当然只有第一个被移除…
在正则表达式中使用g标志("global")替换所有匹配项,而不是第一个匹配项:
1
| str.replace(/ <your pattern here> /g,""); |