Remove all attributes regardless of a node in XML

I want to remove all “date_modified” attributes throughout the XML.

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

<xsl:copy>

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

</xsl:apply-templates>

</xsl:copy>

<xsl:template match=”@date_modified”> </xsl:template></xsl:template>

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s