正则表达式去除除 sub 和; 之外的所有 HTML 标签超级标签
我需要从字符串中删除除 之外的所有 html 标签。 &
标签。
假设字符串为 Hello world"
输出应为 Hello world H2O
I need to strip all html tags from a string except <sub></sub> & <sup></sup>
tags.
Suppose if a string is "<p>Hello world</p> <span class="required">H<sub>2</sub>O</span>"
Output should be Hello world H<sub>2</sub>O
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能会发现使用 Html Agility Pack 之类的东西比使用正则表达式更容易,它可以让您阅读/编写 DOM 来玩。
Rather than using regular expressions, you may find it easier to use something like Html Agility Pack which gives you a read/write DOM to play with.