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

{} quantifiers in regex

Subject: {} quantifiers in regex
From: Geert Bormans <geert@xxxxxxxxxxxxxxxxxxx>
Date: Sat, 12 Jan 2008 23:11:17 +0100
 {} quantifiers in regex
Hi all,

I have this XML
<?xml version="1.0" encoding="UTF-8"?>
<test>43:12</test>

and this non working XSLT
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0">
<xsl:template match="test">
<xsl:variable name="this-duration" select="."/>
<xsl:analyze-string select="$this-duration" regex="((\d{2}):)?(\d{2}):\d{2}">
<xsl:matching-substring>
<xsl:value-of select="regex-group(3)"></xsl:value-of>
</xsl:matching-substring>
</xsl:analyze-string>
</xsl:template>
</xsl:stylesheet>


If I change it to this
(removing \d{2} in favour of \d\d)

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0">
<xsl:template match="test">
    <xsl:variable name="this-duration" select="."/>
    <xsl:analyze-string select="$this-duration" regex="((\d\d):)?(\d\d):\d\d">
        <xsl:matching-substring>
            <xsl:value-of select="regex-group(3)"></xsl:value-of>
        </xsl:matching-substring>
      </xsl:analyze-string>
</xsl:template>
</xsl:stylesheet>

it works

Am I overlooking something?
I am using Saxon 9B in Oxygen,
I had the same issue with older versions, but failed to report it

thanks

Geert

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.