如何从 html 和 jsp 页面获取类似//Comments
&的评论。/*Comments*/
我有评论<!--Comments-->
,,,<%--Comments--%>
以<%Comments%>
下列方式使用 jericho html 解析器。
List<Tag> comments = source.getAllTags(StartTagType.COMMENT);(<!--Comments-->)
List<Tag> serverSideComments = source.getAllTags(StartTagType.SERVER_COMMON_COMMENT);
(<%--Comments--%>)
List<Tag> serverComments = source.getAllTags(StartTagType.SERVER_COMMON);("<%Comments%>")
但我无法找到//
& /*Comments*/
。