Example 2: Namespace aware Rename
This example demonstrates renaming an element that has a namespace.
First we use stm:apply-ns to apply the animals namespace to all elements
of our example document. Secondly we rename the element <animals:b> to equine.
The namespace prefix and URI are preserved.
<idoc> <seq> <instr> <type>stm</type> <operand>doc.xml</operand> <operator> <stm:group xmlns:stm="http://1060.org/stm"> <stm:apply-ns prefix="animals" uri="http://1060.org/test" xpath="/a" /> <stm:rename select="." xpath="/animals:a/animals:b">
equine
</stm:rename> </stm:group> </operator> <target>this:response</target> </instr> </seq> </idoc>
Try it
 |