Help generating text from xml
Hi!
I want to generate a text file with the following output using xslt:
Output: a + A + b + B + x;
I have the following xml:
<?xml version="1.0" encoding="UTF-8"?>
<exp kind="+">
<exp kind="+">
<exp kind="+">
<exp kind="+">
<ident id="a"/>
<ident id="A"/>
</exp>
<ident id="b"/>
<ident id="B"/>
<ident id="x"/>
</exp>
</exp>
</exp>
How can I do this?
Bill Clay
|