我想编写一个突出显示文本中关键字的样式表。
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html"/>
<xsl:template match="/">
<xsl:param name="keyword">keyword</xsl:param>
<html>
<body>
<xsl:for-each select="element()">
<xsl:variable name="elValue" select="."/>
<xsl:analyze-string select="upper-case(.)" regex="{upper-case($keyword)}*">
<xsl:matching-substring>
<i>
<xsl:value-of select="."/>
</i>
</xsl:matching-substring>
<xsl:non-matching-substring>
<xsl:value-of select="."/>
</xsl:non-matching-substring>
</xsl:analyze-string>
</xsl:for-each>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
我使用了正则表达式。
我的问题:整个html输出现在是大写的。我试图使用变量elValue来保存原始值,但这不起作用。该变量似乎在每个循环中追加新值(并且不仅包含新值)。
有没有办法输出元素的原始格式(没有大写)?
提前致谢,
答案 0 :(得分:1)
您可能只想在http://www.w3.org/TR/xslt20/#analyze-string上使用i
标记,即
<xsl:analyze-string select="." regex="{$keyword}*" flags="i">
<xsl:matching-substring>
<i>
<xsl:value-of select="."/>
</i>
</xsl:matching-substring>
<xsl:non-matching-substring>
<xsl:value-of select="."/>
</xsl:non-matching-substring>
</xsl:analyze-string>