Reputation: 267
I am attempting to get a value from an XML file.
So I have parsed the XML to get the correct container using:
Upvotes: 0
Views: 26
Reputation: 241758
:
is used to separate namespace prefix in an XPath expression. You rather need something like
//maskedcardaccount[contains(., '2345')]
Upvotes: 1