替换
在 JSOUP 中使用换行符 (\n)

发布于 2024-12-02 01:27:15 字数 195 浏览 0 评论 0原文

我想使用 Jsoup 将
的所有实例替换为新行(\n 最有可能),但我无法设计出一种干净有效的方法来执行此操作。生成的 Element#text() 不应输出任何 HTML,并包含 \n 来代替在原始 Element 的 HTML 代码中找到
的位置

I'd like to replace all instances of <br> with a new line (\n most likely) using Jsoup, but I cannot devise a clean and efficient way of doing so. The resulting Element#text() should output no HTML and contain \n in place of where <br> was found in the HTML code of the original Element.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

叹梦 2024-12-09 01:27:15

JSoup 是 Java 库,所以我假设您正在使用 Java(您的问题应该被标记)。我看过一个比较(我没有写链接),其中比较了文本替换方法,并且来自 apache-commons 库的 StringUtils 替换方法似乎非常有效与 JRE 方法相比,因此您应该尝试一下。

JSoup is Java library, so I assume you're using Java (your question should be then tagged). I've seen a comparison (I didn't wrote the link) where text replacement methods were compared, and StringUtils replace methods from apache-commons library seemed to be very effective compared to JRE methods, so you should try it.

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