S
Sharat Koya
I have a the following xml node.
<doc tag1="a" tag2="b" tag3="c" docTag1="d" docTag2="e"/>
I would like to output "abc"
I have the following XPATH2.0 so far
//doc/@*[name()[starts-with(.,'tag')]]
which returns a node list.
Is there a better way of concatinating these?
thanks in advance for any advice
<doc tag1="a" tag2="b" tag3="c" docTag1="d" docTag2="e"/>
I would like to output "abc"
I have the following XPATH2.0 so far
//doc/@*[name()[starts-with(.,'tag')]]
which returns a node list.
Is there a better way of concatinating these?
thanks in advance for any advice