XQuery: Create a new element with a given name?

Nick Heiner picture Nick Heiner · Mar 30, 2010 · Viewed 15.8k times · Source

I have data like:

    <td>USERID</td>

    <td>NAME</td>

    <td>RATING</td>

I want to transform it into:

<userid></userid>
<name></name>
<rating></rating>

How can I do this?

Answer

Mads Hansen picture Mads Hansen · Mar 30, 2010

Use a computed element constructor to generate an element with the lower-case value of the text nodes for each of the td elements.

A computed element constructor creates an element node, allowing both the name and the content of the node to be computed.

For the sake of the example, assuming that your XML is in a file called foo.xml, you could do something like this:

<doc>
{
for $name in doc('foo.xml')//td/text()
return element {lower-case($name)} {''}
}
</doc>

to produce this:

<?xml version="1.0" encoding="UTF-8"?>
<doc>
 <userid/>
 <name/>
 <rating/>
</doc>

You could also evaluate the lower-case() function as part of the XPATH expression instead of the element constructor, like this:

<doc>
{
for $name in doc('foo.xml')//td/text()/lower-case(.)
return element {$name} {''}
}
</doc>