反向查找字符串
Posted
技术标签:
【中文标题】反向查找字符串【英文标题】:Reverse Find in a string 【发布时间】:2010-09-06 02:01:36 【问题描述】:我需要能够找到元素中最后一次出现的字符。
例如:
<mediaurl>http://www.blah.com/path/to/file/media.jpg</mediaurl>
如果我尝试通过使用substring-before(mediaurl, '.')
和substring-after(mediaurl, '.')
来定位它,那么它当然会匹配第一个点。
如何获得文件扩展名?本质上,我需要从这样的路径中获取文件名和扩展名,但是对于如何使用 XSLT 来做这件事,我感到很困惑。
【问题讨论】:
【参考方案1】:以下是在 XSLT 1.0 中生成所需输出的模板示例:
<xsl:template name="getExtension">
<xsl:param name="filename"/>
<xsl:choose>
<xsl:when test="contains($filename, '.')">
<xsl:call-template name="getExtension">
<xsl:with-param name="filename" select="substring-after($filename, '.')"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$filename"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template match="/">
<xsl:call-template name="getExtension">
<xsl:with-param name="filename" select="'http://www.blah.com/path/to/file/media.jpg'"/>
</xsl:call-template>
</xsl:template>
【讨论】:
您的答案对于获取扩展名是正确的。要获取文件名和扩展名,您可以测试和“substring-after”“/”。这将导致获取文件名。有了这个,您还可以轻松获得扩展名: substring-after(filenameWithExtension, '.').【参考方案2】:如果您使用的是 XSLT 2.0,这很容易:
<xsl:variable name="extension" select="tokenize($filename, '\.')[last()]"/>
如果你不是,那就有点难了。 O'Reilly XSLT Cookbook 有一个很好的例子。搜索“标记字符串”。
我相信还有一个 EXSLT 功能,如果你有的话。
【讨论】:
【参考方案3】:用“/”标记化并从数组中取出最后一个元素怎么样?
Example: tokenize("XPath is fun", "\s+")
Result: ("XPath", "is", "fun")
曾经是 XSLT 提琴手……现在失去了联系。但是HTH
【讨论】:
【参考方案4】:作为参考,这个问题在 XSLT 中通常称为“substring-after-last”。
【讨论】:
不是 xslt 1.0 中的函数 不是 XPath/XSLT any 版本中的函数。 这个答案完全没有价值,应该删除。以上是关于反向查找字符串的主要内容,如果未能解决你的问题,请参考以下文章