Hi Manuel,
On 04/09/2009, Manuel Souto Pico <m(_dot_)soutopico(_at_)gmail(_dot_)com> wrote:
<xsl:variable name="common">
<xsl:analyze-string select="$srcfilename" regex=".+/([^/]+)\.(XLF|xlf)">
<xsl:matching-substring>
<xsl:variable select="regex-group(1)"/>
</xsl:matching-substring>
</xsl:analyze-string>
</xsl:variable>
You want to replace
<xsl:variable select="regex-group(1)"/>
by
<xsl:value-of select="regex-group(1)"/>
Regards,
Manfred
--~------------------------------------------------------------------
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>
--~--