从java

时间:2016-02-15 05:48:27

标签: java html regex

我的要求是替换字符串中的html标记。

  1. 我尝试过使用Jsoup和其他解析器。
  2. 我尝试使用正则表达式。
  3. 但问题是他们正在删除不是HTML的内容。

    示例:

    <p>hi Hello</p>Second Hi Hello <span id=\"true\">If B<A then A>B &amp; this is true</span> After body in message body normal text.
    

    预期产出:

    hi Hello Second Hi Hello If B<A then A>B  this is true After body in message body normal text
    

    实际输出:

    hi Hello Second Hi Hello If BB  this is true After body in message body normal text
    

    有人可以让我知道可能的方法吗?

0 个答案:

没有答案