从字符串中转义 HTML 以及 \r \t 和 \n

发布于 2024-12-11 05:56:46 字数 216 浏览 0 评论 0原文

我正在尝试从具有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

亽野灬性zι浪 2024-12-18 05:56:46

您是否想转义 html 标签以便 变为 或者您想删除标签本身。你原来的问题是不明确的。

对于第一种情况:(

answer.feedback.encodeAsHTML() 

参见 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:

answer.feedback.encodeAsHTML() 

(see http://grails.org/doc/latest/ref/Plug-ins/codecs.html for further info)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文