I have a node like this:
I want to be able to select this element i
Using XPath 2 you could do:
/meta[ends-with(@name, 'description')]
For XPath 1 we need:
/meta['description' = substring(@name, string-length(@name) - string-length('description') + 1)]