单词中的问题我需要在找到一个特殊字符串的其他字符串中插入一个字符串。这些特殊字符串的定义在节点集中。最接近的通用解决方案是进行多个替换,然后用与特殊字符串连接的插入的字符串替换匹配的特殊字符串。我已经搜索了一个解决方案,但没有找到任何有效的方法。
示例。输入XML:
<root name ="theTop.">
<string>Here are some silly words</string>
<string>where I would like</string>
<other>
<string>to append other silly words</string>
</other>
<words>
<word name="word"/>
<word name="silly"/>
</words>
</root>
输出XML:
<root name ="theTop.">
<string>Here are some theTop.silly theTop.words</string>
<string>where I would like</string>
<other>
<string>to append other theTop.silly theTop.words</string>
</other>
<words>
<word name="word"/>
<word name="silly"/>
</words>
</root>
我还没有想出任何有用的东西。这是我想象Skelleton的样子的"草图":
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output omit-xml-declaration="yes"/>
<xsl:variable name="append" select="/root/@name"/>
<xsl:variable name="places" select="/root/words/word/@name"/>
<!-- Identity rule.-->
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
<xsl:template match="//string">
<xsl:call-template name="replace-multiple">
<xsl:with-param name="text" select="."/>
<xsl:with-param name="replace" select="$places"/>
<xsl:with-param name="with" select="concat($append,$places)"/>
</xsl:call-template>
</xsl:template>
显然这不起作用。它没有迭代节点集$ ploce,我没有命名的模板替换 - 替换多个不同的字符串。
有什么想法?
这确实很难在XSLT 1.0中执行。
问题不仅是替换多个字符串。这里还有其他并发症,因为替换串包含搜索串线(因为您仅添加前缀(。这消除了使用单个模板在整个文本中反复进行的可能性,并决定了两个单独的模板的使用:一个是在多个搜索串上递归,另一个是在文本中的当前搜索弦的出现:<<
XSLT 1.0
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:strip-space elements="*"/>
<!-- identity transform -->
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="string">
<xsl:copy>
<xsl:call-template name="multi-prefix">
<xsl:with-param name="text" select="."/>
</xsl:call-template>
</xsl:copy>
</xsl:template>
<xsl:template name="multi-prefix">
<xsl:param name="text"/>
<xsl:param name="search-strings" select="/root/words/word/@name"/>
<xsl:choose>
<xsl:when test="$search-strings">
<xsl:call-template name="multi-prefix">
<xsl:with-param name="text">
<xsl:call-template name="single-prefix">
<xsl:with-param name="text" select="$text"/>
<xsl:with-param name="search-string" select="$search-strings[1]"/>
</xsl:call-template>
</xsl:with-param>
<xsl:with-param name="search-strings" select="$search-strings[position() > 1]"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$text"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template name="single-prefix">
<xsl:param name="text"/>
<xsl:param name="prefix" select="/root/@name"/>
<xsl:param name="search-string"/>
<xsl:choose>
<xsl:when test="contains($text, $search-string)">
<xsl:value-of select="substring-before($text, $search-string)"/>
<xsl:value-of select="$prefix"/>
<xsl:value-of select="$search-string"/>
<xsl:call-template name="single-prefix">
<xsl:with-param name="text" select="substring-after($text, $search-string)"/>
<xsl:with-param name="search-string" select="$search-string"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$text"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>
我认为exslt提供 str:replace
(http://exslt.org/str/functions/replace/replace/str.replace.template.xsl(,但是,我努力地努力获得它简单地用一个简单的字符串替换匹配的单词,因此我已将其实现从使用copy-of
到value-of
:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:exsl="http://exslt.org/common"
xmlns:str="http://exslt.org/strings"
exclude-result-prefixes="exsl str"
version="1.0">
<xsl:import href="http://exslt.org/str/functions/replace/str.replace.template.xsl"/>
<xsl:template name="str:_replace">
<xsl:param name="string" select="''"/>
<xsl:param name="replacements" select="/.."/>
<xsl:choose>
<xsl:when test="not($string)"/>
<xsl:when test="not($replacements)">
<xsl:value-of select="$string"/>
</xsl:when>
<xsl:otherwise>
<xsl:variable name="replacement" select="$replacements[1]"/>
<xsl:variable name="search" select="$replacement/@search"/>
<xsl:choose>
<xsl:when test="not(string($search))">
<xsl:value-of select="substring($string, 1, 1)"/>
<xsl:value-of select="$replacement/node()"/>
<xsl:call-template name="str:_replace">
<xsl:with-param name="string" select="substring($string, 2)"/>
<xsl:with-param name="replacements" select="$replacements"/>
</xsl:call-template>
</xsl:when>
<xsl:when test="contains($string, $search)">
<xsl:call-template name="str:_replace">
<xsl:with-param name="string" select="substring-before($string, $search)"/>
<xsl:with-param name="replacements" select="$replacements[position() > 1]"/>
</xsl:call-template>
<xsl:value-of select="$replacement/node()"/>
<xsl:call-template name="str:_replace">
<xsl:with-param name="string" select="substring-after($string, $search)"/>
<xsl:with-param name="replacements" select="$replacements"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="str:_replace">
<xsl:with-param name="string" select="$string"/>
<xsl:with-param name="replacements" select="$replacements[position() > 1]"/>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template match="@* | node()">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="string">
<xsl:param name="insert" select="ancestor::root/@name"/>
<xsl:param name="search" select="ancestor::root/words/word"/>
<xsl:param name="replace">
<xsl:for-each select="$search">
<replace>
<xsl:value-of select="concat($insert, .)"/>
</replace>
</xsl:for-each>
</xsl:param>
<xsl:copy>
<xsl:call-template name="str:replace">
<xsl:with-param name="string" select="."/>
<xsl:with-param name="search" select="$search"/>
<xsl:with-param name="replace" select="exsl:node-set($replace)/replace"/>
</xsl:call-template>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>