I'm not overly familiar with the terminology, so I'm not even sure the title of the question is accurate but I shall try to explain best I can.
I have the below XML example.
<countries>
<country name="Afghanistan" population="22664136" area="647500">
<language percentage="11">Turkic</language>
<language percentage="35">Pashtu</language>
<language percentage="50">Afghan Persian</language>
</country>
</countries>
I use XPath down to the language nodes (/countries/country/ and then a for-each for the languages).
<language percentage="11">Turkic</language>
Using XSLT how can I output the value of , in the above example "Turkic". I can't think of another way to phrase the question but its like I am at the node and don't know the syntax to grab the value of this node.
Thanks in advance