xsl-list
[Top] [All Lists]

Re: [xsl] XPath - excluding specified childNodes from result nodeList

2007-12-15 12:46:06
In XPath 2.0 that's something like

string-join((/document/a//text() except /document/a//c/text()), "")

Offhand I'd say that it can't be done in XPath 1.0. But I think you're
stretching XPath anyway - you should be thinking about using XSLT or XQuery.

Thanks for the advice Michael, I think your right, XQuery is what I
need - roll on the native PHP implementation!

Cheers,

Steve

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--