You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@xalan.apache.org by Pa...@lotus.com on 2000/09/07 15:37:00 UTC

Re: XPath/DOM discrepancy with &...; encoding?

Trevor,

I think the problem is that you can't have nested quotes.
Try changing your xpath statement from;
"/channel/location/group[@name=\"" + s + "\"]");

to something like;
"/channel/location/group[@name='"Test" Group']");

Paul