[XSL-LIST Mailing List Archive Home]
[By Thread]
[By Date]
Re: [xsl] How to split an RegEx into several lines for readability?
Subject: Re: [xsl] How to split an RegEx into several lines for readability?
From: "Rashmi Rubdi" <rashmi.sub@xxxxxxxxx>
Date: Sun, 29 Apr 2007 16:37:50 -0400
|
This matches all quoted strings:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text" indent="yes" omit-xml-declaration="yes"/>
<xsl:template name="mainTemplate">
<xsl:variable name="testString">Testing "123 first quoted string"
and then "second quoted string" and another "third quoted
string".</xsl:variable>
<!-- ("[^"]*") -->
<xsl:analyze-string select="$testString" regex='("[^"]*")'>
<xsl:matching-substring>
<xsl:value-of select="regex-group(1)"/>
</xsl:matching-substring>
<!--
<xsl:non-matching-substring>
<xsl:value-of select="."/>
</xsl:non-matching-substring>
-->
</xsl:analyze-string>
</xsl:template>
</xsl:stylesheet>
-Rashmi
|