[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: recognize character entities

Subject: Re: recognize character entities
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 31 Aug 2006 09:34:27 +0100
Re:  recognize character entities
> strange is that the matches() regex allows only decimal values as  
> range 592 represents here hex 0250 

The regex syntax doesn't allow any numeric references in decimal or hex.
You have to use a character. However before being passed to XPath, teh
attribute is parsed by an XML parser so you can use any XML syntax for
that character, named entity references (as defined in a dtd) teh
character in the file's encoding,  decimal character references (as you
have) or hex character references, which would use the & # x 0 2 5 0 ;
syntax.

 match="*[matches(substing(text()[1], 1, 1), '[&#592;-&#99999;]')]">

It's probably simpler to just restrict the regex to the first character,
rather than use substring:


 match="*[matches(., '^[&#592;-&#99999;]')]">

David

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.