Subject: Re: [xsl] tokenizing comma separated string with quotes From: "Andrew Welch" <andrew.j.welch@xxxxxxxxx> Date: Thu, 22 Feb 2007 13:03:14 +0000 |
> is there a modification to the regex to not include the surrounding quotes?
<xsl:variable name="regex"> <xsl:text>\s*"(([^"]*)"|([^,]+))\s*</xsl:text> </xsl:variable>
then use <xsl:value-of select="concat(regex-group(2),regex-group(3))"/>
Only one of the groups will be non-empty, but concating them together is probably easier than testing which group you need.
Thanks David, I'll take it from that there's no straightforward modification to the regex...
This is one of the problems that looks straightforward to start with but is actually much more complicated.
Current Thread |
---|
|
<- Previous | Index | Next -> |
---|---|---|
Re: [xsl] tokenizing comma separate, David Carlisle | Thread | Re: [xsl] tokenizing comma separate, David Carlisle |
Re: [xsl] tokenizing comma separate, Abel Braaksma | Date | Re: [xsl] tokenizing comma separate, Andrew Welch |
Month |