Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an XML document, and I want to change the values for one of the attributes.

First I copied everything from input to output using:

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

And now I want to change the value of the attribute "type" in any element named "property".

share|improve this question

5 Answers

up vote 21 down vote accepted

Tested on a simple example, works fine:

<xsl:template match="@*|node()">
  <xsl:copy>
    <xsl:apply-templates select="@*|node()"/>
  </xsl:copy>
</xsl:template>
<xsl:template match="@type[parent::property]">
  <xsl:attribute name="type">
    <xsl:value-of select="'your value here'"/>
  </xsl:attribute>
</xsl:template>

Edited to include Tomalak's suggestion.

share|improve this answer
An alternative version would be <xsl:template match="@type[parent::property]"> – Tomalak Mar 5 '09 at 18:36
Agreed. Your way is probably more intuitive as it matches up more logically with what the template is for. – Welbog Mar 5 '09 at 18:50
1  
That's what I wanted to say in the original comment as well, but forgot to actually type it. ;-) – Tomalak Mar 5 '09 at 18:56
1  
@Tomalak: Depends. I would prefer the parent/@type. But this is clearly subjective. – Richard Mar 5 '09 at 20:25
4  
property/@type is better as it is more clear and understandable. Probably even more efficient (by several microseconds :) ) – Dimitre Novatchev Mar 6 '09 at 3:19

This problem has a classical solution: Using and overriding the identity template is one of the most fundamental and powerful XSLT design patterns:

<xsl:stylesheet version="1.0" 
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output omit-xml-declaration="yes" indent="yes"/>

    <xsl:param name="pNewType" select="'myNewType'"/>

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

    <xsl:template match="property/@type">
        <xsl:attribute name="type">
            <xsl:value-of select="$pNewType"/>
        </xsl:attribute>
    </xsl:template>
</xsl:stylesheet>

When applied on this XML document:

<t>
  <property>value1</property>
  <property type="old">value2</property>
</t>

the wanted result is produced:

<t>
  <property>value1</property>
  <property type="myNewType">value2</property>
</t>
share|improve this answer

You need a template that will match your target attribute, and nothing else.

<xsl:template match='XPath/@myAttr'>
  <xsl:attribute name='myAttr'>This is the value</xsl:attribute>
</xsl:template>

This is in addition to the "copy all" you already have (and is actually always present by default in XSLT). Having a more specific match it will be used in preference.

share|improve this answer
I've tried it without the "copy all" part and it only got what was between the tags. None of the tag themselves or the attributes got copied. – tomato Mar 5 '09 at 19:32
@coderx: Would need to see a sample, not sure what you mean. – Richard Mar 5 '09 at 20:23

I had a similar case where I wanted to delete one attribute from a simple node, and couldn't figure out what axis would let me read the attribute name. In the end, all I had to do was use

@*[name(.)!='AttributeNameToDelete']

share|improve this answer
1  
+1 because this construct is useful if one wants to change an attribute within a copy. but the answer is incomplete. See this answer for what I mean: stackoverflow.com/a/12919373/520567 – akostadinov Oct 17 '12 at 8:02

For the following XML:

<?xml version="1.0" encoding="utf-8"?>
<root>
    <property type="foo"/>
    <node id="1"/>
    <property type="bar">
    	<sub-property/>
    </property>
</root>

I was able to get it to work with the following XSLT:

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:template match="@*|node()">
    	<xsl:copy>
    		<xsl:apply-templates select="@*|node()"/>
    	</xsl:copy>
    </xsl:template>
    <xsl:template match="//property">
    	<xsl:copy>
    		<xsl:attribute name="type">
    			<xsl:value-of select="@type"/>
    			<xsl:text>-added</xsl:text>
    		</xsl:attribute>
    		<xsl:copy-of select="child::*"/>
    	</xsl:copy>
    </xsl:template>
</xsl:stylesheet>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.