正则表达式中的坏字符
我遇到了一个简单的问题,我认为你们可以解决。我正在编写 javascript 程序,我使用以下代码将一个字符串中的所有字符串替换为另一个字符串:
str = str.replace(/find/g,”replace”)
是的,该代码可以工作,但我想做的是:
str = str.replace(/</p>/g,”replace”)
它不会工作,因为:
</p>.
它不喜欢/。
谁能帮助我?
i ran into a simple problem, which I think you guys can solve. I am programming javascript, where I use the following code to replace all strings in a string with another string:
str = str.replace(/find/g,”replace”)
Yes, the code works, but what I want to do is:
str = str.replace(/</p>/g,”replace”)
It won't work because of:
</p>.
It dosen't like the /.
Anyone who can help me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用转义:
Use an escape:
使用另一个
\.
转义/
就像<\/p>
应该可以。
Escape
/
with another\.
Like<\/p>
Should work.