Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
xpath と xsl を学習したばかりで、質問があります。
<!-- foo -->たとえば、 foo という名前の各 xml 要素の先頭にコメントを追加するにはどうすればよいですか?
<!-- foo -->
xpath または xslt を使用して実行できますか?
はい、そのための XSLT 要素があります: <xsl:comment>。
説明したことを行うには、次を使用できます。
<!-- Match foo elements in the XML --> <xsl:template match="foo"> <xsl:comment>foo</xsl:comment> <foo> <xsl:apply-templates /> </foo> </xsl:template>