在使用 XSLT 获取评论之间的 XML 内容时,我需要帮助。
XML:
<?xml version="1.0" encoding="ISO-8859-1"?>
<bookstore>
<book>
<title lang="eng">Harry Potter</title>
<price>29.99</price>
</book>
<!-- start comment 1 -->
<book>
<title lang="it">Learning XML</title>
<price>39.95</price>
</book>
<!-- end comment 1 -->
</bookstore>
输出:
<book>
<title lang="it">Learning XML</title>
<price>39.95</price>
</book>