从字符串中转义 HTML 以及 \r \t 和 \n
我正在尝试从具有 HTML 标签的代码中的内置字符串索引太阳能搜索。任何人都知道我如何从字符串中删除所有字符。
目前,我正在使用
answers << answer.feedback.replaceAll('\\<.*?>','')
我想转义所有 HTML 字符以及所有 \n \t 和 \r。如何做到这一点?
I am trying to index solar search from a built string in a code which has HTML tags. Any one knows how I can remove all the characters from the String.
Currently, I am using
answers << answer.feedback.replaceAll('\\<.*?>','')
I want to escape all the HTML characters and all the \n \t and \r. How to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否想转义 html 标签以便 变为 或者您想删除标签本身。你原来的问题是不明确的。
对于第一种情况:(
参见 http://grails.org/doc/ latest/ref/Plug-ins/codecs.html 了解更多信息)
Do you want to escape the html tags so that <span> becomes <span> or do you want to REMOVE the tags themselves. Your original question is ambiguous.
For the first scenario:
(see http://grails.org/doc/latest/ref/Plug-ins/codecs.html for further info)