[Date Prev]
| [Thread Prev]
| [Thread Next]
| [Date Next]
--
[Date Index]
| [Thread Index]
Re: [xml-dev] union operator and predicates in XSLT patterns
- From: David Carlisle <davidc@nag.co.uk>
- To: "HILLMAN, Tomos" <tomos.hillman@oup.com>
- Date: Mon, 24 Jan 2011 17:26:41 +0000
On 24/01/2011 17:06, HILLMAN, Tomos wrote:
. match="(div1|div2)[not(@role)]" (simplified).
as Ken said, the grammar for patters is more restricted, in general you
need to pull the | to the top level or push it into a predicate so
div1[not(@role)] | div2[not(@role)]
or
*[self::div1 or self::div2][not(@role)]
or
*[matches(name(),'^div[0-9]+')][not(@role)]
or something
David
________________________________________________________________________
The Numerical Algorithms Group Ltd is a company registered in England
and Wales with company number 1249803. The registered office is:
Wilkinson House, Jordan Hill Road, Oxford OX2 8DR, United Kingdom.
This e-mail has been scanned for all viruses by Star. The service is
powered by MessageLabs.
________________________________________________________________________
[Date Prev]
| [Thread Prev]
| [Thread Next]
| [Date Next]
--
[Date Index]
| [Thread Index]