How do I concatenate multiple tag values using XPATH on vtd XML?
<pre>
<a>
<b>
<c>Hi</c>
<d>Vtd</d>
<e>Users</e>
</b>
</a>
</pre>
I have tried to use the following unsuccessfully.
Xpath: concat(\a\b\c, \a\b\d, \a\b\e) Result is : Hi Vtd Users
If I use concat with this XPATH, I receive the following error:
Error "Function Expr can't eval to node set"