I am a newcomer to XPath.
I am looking for a way to get all elements whose tag name contains a particular string.
For example, if I have XML like below, I wa
For an XPath solution:
//*[contains(local-name(), 'Name')]
Since there is no Namespace prefix, you can also use
//*[contains(name(), 'Name')]