xsl-list
[Top] [All Lists]

RE: Small changes to source XML

2004-05-14 07:40:18
Write an identity template that copies everything:

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

Then override it for the things you want to change:

<xsl:template match="a/@ID">
  <xsl:attribute name="ID">0</xsl:attribute>
</xsl:template>

Michael Kay 

-----Original Message-----
From: Kenny Akridge [mailto:kenny(_at_)akridgefamily(_dot_)com] 
Sent: 14 May 2004 13:16
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: [xsl] Small changes to source XML

Forgive me for seeming ignorant, but I certainly am in this 
case.  I want to
mostly copy all of my source XML to the output XML, with some 
small changes.
For instance:

<root>
      <a ID="74">
      <a ID="75">
      <a ID="76">
</root>

I want this output:

<root>
      <a ID="0">
      <a ID="0">
      <a ID="0">
</root>


What is the best way to do this with a lot of XML without 
using xsl:element?


--+------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: 
<mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--+--





<Prev in Thread] Current Thread [Next in Thread>