我想用变量中的值进行字符串替换,如下所示:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" xmlns:str="http://exslt.org/strings" extension-element-prefixes="str" >
<xsl:variable name="my-variable">bar</xsl:variable>
<xsl:template match="text()">
<xsl:value-of select="str:replace( . ,'foo', $my-variable )"/>
</xsl:template>
</xsl:stylesheet>
当我在文件上运行它时,例如,
<?xml version="1.0" encoding="utf-8"?>
<root>foobar</root>
我来自 xsltproc / libxslt 这个错误
XPath error : Invalid type
xmlXPathCompiledEval: evaluation failed
runtime error: file C:/Users/Adam/Documents/WakhiLD/XSL/replace.xsl line 6 element value-of
XPath evaluation returned no result.
在函数调用中使用变量似乎是合理的,所以我不知道我应该做什么。