Feed on
Posts
Comments

Tag Archive 'XML'

If you need to copy an XML document to another filtering it from a specific element node, a good solution could be the use of XSL. The starting point is the so called "identity" template as introduced with an example in the XSLT Recommendation itself:
PLAIN TEXT
XML:

<xsl:template match="@*|node()">

    <xsl:copy>

        <xsl:apply-templates select="@*|node()"/>

    [...]

Read Full Post »

Creative Commons Attribution 3.0 Unported
Creative Commons Attribution 3.0 Unported