For an XML document, I want to be able to find all the elements/nodes that have a certain text 'abc' in it. This text will be primarily found in the attributes (property name='abc'). The thing is the attribute name will not be known beforehand so I cannot parse the exact attribute name. Is there any way to handle this easily?
I am using XPath, but I can only solve this problem if I know what the attribute name is. I want to find elements that have the text 'abc' without knowing the attributes and such.