xsl-list
[Top] [All Lists]

Re: [xsl] Using regular expressions within xpath predicates

2009-02-04 12:39:04
Randy Booth wrote:
Sweet!  That seems to work...  What is the "^\d+$" doing exactly?  I've
done a few searches and didn't come up with anything...  where would its
use be documented?

It is a regular expression where
  ^
means the start of the string,
  \d
means a decimal digit
  \d+
means one or more digits and
  $
means the end of the string.

The exact syntax of regular expressions differs from programming language to programming language but most tutorials on regular expressions should cover that.


--

        Martin Honnen
        http://JavaScript.FAQTs.com/

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