Как заменить строку на элемент XML с помощью XSLT 1.0?
Источник:
<body>This has a keyword and may have another keyword</body>
Желаемый вывод:
<body>This has a <kw>keyword</kw> and may have another <kw>keyword</kw></body>
У меня есть следующеешаблон, но он поддерживает только замену строки текстом.
<xsl:template name="replace-string">
<xsl:param name="text"/>
<xsl:param name="replace"/>
<xsl:param name="with"/>
<xsl:choose>
<xsl:when test="contains($text,$replace)">
<xsl:value-of select="substring-before($text,$replace)"/>
<xsl:value-of select="$with"/>
<xsl:call-template name="replace-string">
<xsl:with-param name="text" select="substring-after($text,$replace)"/>
<xsl:with-param name="replace" select="$replace"/>
<xsl:with-param name="with" select="$with"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$text"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
Любые советы будут полезны.
Спасибо.