我希望能够使用Jericho解析两个评论标签之间的任何和所有文本。例如,
<!--start-->
abc
123
<!--end-->
将返回
abc
123
是可能的吗?
答案 0 :(得分:0)
http://jericho.htmlparser.net/docs/index.html - &gt; Html评论 - &gt; http://jericho.htmlparser.net/samples/console/src/FindSpecificTags.java - &gt;
(...)
System.out.println("HTML Comments:");
displaySegments(source.getAllTags(StartTagType.COMMENT));
(...)