替换
在 JSOUP 中使用换行符 (\n)
我想使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.