[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: Abel Online <abel.online@xxxxxxxxx>
Date: Thu, 31 Aug 2006 18:23:19 +0200
frank marent
David Carlisle wrote:
*[not(matches(., '^[&#33;-&#591;]'))]
There's a slight but maybe tricky difference between this method and your original attempt. In the previous expression you did not provide for empty nodes. I'm not sure if it matters, but:

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

matches only those nodes that start with a special character, and does not match empty nodes, while:

*[not(matches(., '^[&#33;-&#591;]'))]

matches all noted that do not start with a special character. This will hold true for empty nodes as well. To mimic the original intent more closely, you need:

*[not(matches(., '^[&#33;-&#591;]|^$'))]

which will return true for all special characters and false for an empty node. (unless of course you do want to do something with empty nodes, but forgot about it in your original attempt ;)

Cheers,

Abel Braaksma

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.