<xsl:analyze-string select="." regex="(\d{1,3}\.)(.*?)">
Maybe try changing that to:
<xsl:variable name="regex" as="xs:string">(\d+\.)(.*)</xsl:variable>
<xsl:analyze-string select="." regex="{$regex}">
--
Andrew Welch
http://andrewjwelch.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>
--~--