http://qs321.pair.com?node_id=742498


in reply to Re: Using XPath in libXML
in thread Using XPath in libXML

Ah, the quotes mix up. I didn't consider that. The criteria I was using to access some of the nodes was in the form:

my $query = "//property[color = 'Blue']/OtherProperty/text()";

This threw me off. I switched to using the single (literal) quotes and this has helped quite a bit. However I am still curious if there are other "/text()" style path calls. (Just in case there are better ways of doing things.)

Thanks for you help.