Jsoup.clean,无需添加 html 实体
2022-09-01 14:00:01
我正在使用 从不需要的HTML标签(例如)中清除一些文本<script>
String clean = Jsoup.clean(someInput, Whitelist.basicWithImages());
问题是它取代了例如(这给我带来了麻烦,因为它不是“纯xml”)。å
å
例如
Jsoup.clean("hello å <script></script> world", Whitelist.basicWithImages())
收益 率
"hello å world"
但我想
"hello å world"
有没有一种简单的方法可以实现这一目标?(即,比在结果中转换回更简单。å
å