XSLT -从URL获取文件名



我需要从URL获取文件名,URL是动态的,斜杠的数量可以是不同的数量。我使用xslt 1.0,所以寻找一些东西将采取:

http://DevSite/sites/name/Lists/note/Attachments/3/image.jpg

给我:

image.jpg

这在XSLT 1.0中可能吗?

如果使用XSLT 2.0,可以使用子序列()并创建一个函数:

在xsl:stylesheet root:

中声明函数
xmlns:myNameSpace="http://www.myNameSpace.com/myfunctions"

创建函数:

<xsl:function name="myNameSpace:getFilename">
    <xsl:param name="str"/>
    <!--str e.g. document-uri(.), filename and path-->
    <xsl:param name="char"/>
    <xsl:value-of select="subsequence(reverse(tokenize($str, $char)), 1, 1)"/>
</xsl:function>

调用函数:

<xsl:value-of select="myNameSpace:getFilename('http://DevSite/sites/name/Lists/note/Attachments/3/image.jpg', '/')"/>

你可以使用递归:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output method="xml" indent="yes"/>
    <xsl:template match="/">
        <xsl:variable name="url">http://DevSite/sites/name/Lists/note/Attachments/3/image.jpg</xsl:variable>
        <xsl:call-template name="get-file-name">
            <xsl:with-param name="input" select="$url"/>
        </xsl:call-template>
    </xsl:template>
    <xsl:template name="get-file-name">
        <xsl:param name="input"/>
        <xsl:choose>
            <xsl:when test="contains($input, '/')">
                <xsl:call-template name="get-file-name">
                    <xsl:with-param name="input" select="substring-after($input, '/')"/>
                </xsl:call-template>
            </xsl:when>
            <xsl:otherwise>
                <xsl:value-of select="$input"/>
            </xsl:otherwise>
        </xsl:choose>
    </xsl:template>
</xsl:stylesheet>

输出:image.jpg

相关内容

  • 没有找到相关文章

最新更新