我正在尝试从一个大字符串中为一个变量分配一个变量。我首先对字符串进行标记,然后为每个标记检查它是否包含某个子字符串。如果是,我想将该标记分配给变量。
最后,我使用该变量来设置div的属性。
我在下面尝试过这段代码,它在oXygen XML Editor
中为我提供了我想要的确切输出。但是,当我在IE
(11)中运行XML / XSLT文件时,它只是打印出整个原始字符串,在下面的XSLT中显示xhtmlVar
。 div甚至没有出现(它可能存在于DOM中,但我没有在视觉上看到它 - 我会立刻重新检查它)。
XSLT
<!-- xhtmlVar variable is a large string -->
<xsl:variable name="xhtmlVar" select="metadata[@element='xhtml_head_item']"></xsl:variable>
<xsl:variable name="quoteChar">"</xsl:variable> <!-- for cleaning token below -->
<xsl:variable name="tokenized" select="tokenize($xhtmlVar,' ')"/>
<xsl:variable name="doi">
<xsl:for-each select="$tokenized">
<xsl:variable name="curtoken" select="."/>
<!-- if token contains the string 'doi', assign it to the variable -->
<xsl:if test="contains($curtoken, 'doi')">
<!-- return value while stripping some stuff (token looks like this: doi:asdasdasd") -->
<xsl:value-of select="translate(replace($curtoken, 'doi:', ''),$quoteChar,'')"></xsl:value-of>
</xsl:if>
</xsl:for-each>
</xsl:variable>
<!-- pass $doi variable as attribute value in a div -->
<div type='medium' class='embed' handle='{$doi}'></div>
我怎样才能实现我想要的目标?难道我做错了什么?任何有关如何更优雅地编写上述代码的提示也值得赞赏!
提前致谢!
更新
我已经将我的代码更改为使用EXSLT,正如Martin Honnen所建议的那样。
但是,现在tokenize模板似乎只是删除指定的分隔符,而不是实际使用它作为分隔符。另外,我无法弄清楚如何使用空格作为分隔符:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:exsl="http://exslt.org/common"
xmlns:str="http://exslt.org/strings"
extension-element-prefixes="exsl str"
exclude-result-prefixes="xs"
version="1.0">
<xsl:import href="str/str.xsl" />
<xsl:import href="str.tokenize/str.tokenize.template.xsl" />
...
<xsl:variable name="quoteChar">"</xsl:variable>
<xsl:variable name="spaceChar"> </xsl:variable>
<xsl:variable name="tokenized">
<xsl:call-template name="str:tokenize">
<xsl:with-param name="string" select="$xhtmlVar" />
<xsl:with-param name="delimiters" select="','" />
</xsl:call-template>
</xsl:variable>
<!-- prevent tree fragment error with exsl:node-set -->
<xsl:for-each select="exsl:node-set($tokenized)">
<xsl:variable name="curtoken" select="."/>
<xsl:value-of select="$curtoken"/>
<xsl:text> Ha </xsl:text>
<!-- Nevermind checking if each token contains what I want for now...
<xsl:if test="contains($curtoken, 'doi')">
<xsl:value-of select="translate(str:replace($curtoken, 'doi:', ''),$quoteChar,'')"></xsl:value-of>
</xsl:if>-->
</xsl:for-each>
上面的代码不会打印出由单词“Ha”分隔的每个标记,而是打印出整个字符串(每个标记),但将删除逗号分隔符“,”。然后“哈”出现在最后。我可能错误地使用了node-set
函数吗?
另外,如果我尝试使用$spaceChar
之类的分隔符或整个单词,例如'than'
,我经常会遇到“模板指令堆栈溢出”错误。
每个michael.hor的答案都有效。
使用,str:replace()
喜欢这样
<xsl:value-of select="translate(str:replace($curtoken, 'doi:', ''),$quoteChar,'')"/>
但是在oXygen XML中给出了这个错误:
Severity: fatal
Description: java.lang.NoSuchMethodException: For extension function, could not find method org.apache.xalan.lib.ExsltStrings.replace([ExpressionContext,] #NODESET, #STRING, #STRING).
Checked both static and instance methods. - For extension function, could not find method org.apache.xalan.lib.ExsltStrings.replace([ExpressionContext,] #NODESET, #STRING, #STRING).
Checked both static and instance methods.
答案 0 :(得分:3)
tokenize
,该版本是浏览器支持的所有版本。如果你想在浏览器中使用Xslt 2.0,那么你需要研究Saxon CE。
在IE内部,XSLT实现是MSXML,而http://exslt.org/str/functions/tokenize/index.html提供了使用JScript完成的标记化实现。
答案 1 :(得分:1)
重新提出您的最新问题:
如果您的处理器支持EXSLT str:tokenize()扩展功能,则:
尝试以下样式表作为测试(它适用于任何输入):
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:str="http://exslt.org/strings"
extension-element-prefixes="str">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:param name="input" select="'some,comma,delimited,string'" />
<xsl:template match="/">
<xsl:variable name="tokenized" select="str:tokenize($input, ',')" />
<output>
<xsl:for-each select="$tokenized">
<xsl:value-of select="." />
<xsl:text> Ha </xsl:text>
</xsl:for-each>
</output>
</xsl:template>
</xsl:stylesheet>