xsl-list
[Top] [All Lists]

Re: [xsl] recognize character entities

2006-08-31 09:00:38

  match="*[matches(., '^[ɐ-�]')]">

does it and selects all elements starting with a 'special character'!  
thanks frank

that only selects ones up to 65533, and a lot of math characters are
higher than that: there's a whole block starting at 119808 (hex 1d400) to
120831 (hex 1d7ff)  script A, 𝒜 for example is character 119964.

You might be better writing this as

*[not(matches(., '^[-ɏ]'))]

David

--~------------------------------------------------------------------
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>
--~--