Is there some kind of split() function in xpath? Say I have this xml:
<root>
<path>C:\folder\filename</path>
</root>
And I want to retrieve 'filename', how can I do this? I know I can get the nodevalue like this:
//path/text()
How can I get only the filename? (I know there exists a concat() function, so maybe there is a split() function)?
Thank you