這裏是XSLT 1.0不使用正則表達式的完整解決方案:
<xsl:template match="enclosure">
<xsl:variable name="url" select="./@url"/>
<xsl:variable name="name">
<xsl:call-template name="last-substring-after">
<xsl:with-param name="string" select="$url"/>
<xsl:with-param name="separator" select="'/'"/>
</xsl:call-template>
</xsl:variable>
<fileIdentifier source="Theme">
<xsl:value-of select="substring-before($name, '.')"/>
</fileIdentifier>
</xsl:template>
<xsl:template name="last-substring-after">
<xsl:param name="string"/>
<xsl:param name="separator"/>
<xsl:choose>
<xsl:when test="contains($string, $separator)">
<xsl:call-template name="last-substring-after">
<xsl:with-param name="string"
select="substring-after($string, $separator)"/>
<xsl:with-param name="separator"
select="$separator"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$string"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
輸出將是─
<fileIdentifier source="Theme">musiccheck20130118pod</fileIdentifier>
Source
這是美好的,完美的作品。謝謝 – jackpass