Subject: Re: XSL equivalent of SQL having
From: "john-xsl-list" <john-xsl-list@xxxxxxxx>
Date: Wed, 22 Sep 2004 13:06:19 -0400
|
On Wed, 22 Sep 2004 13:00:28 -0400, Francesco Barresi wrote
>
> Yes, just use the XPath expresion:
>
> ...
>
> /one/two[child::three]
Thanks. There has been a complication. I want to retrieve all <two>
elements that have <three> children that meet a criteria. Is it possible to
nest the [], do I use a different character or is this not possible?
/one/two[child::three[@atribute='value']]
|