我认为,这是你为:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="xml" encoding="utf-8" indent="yes"/>
<xsl:template match="*">
<xsl:copy>
<xsl:apply-templates/>
</xsl:copy>
</xsl:template>
<xsl:template match="wish">
<xsl:copy>
<xsl:call-template name="link-first-letters">
<xsl:with-param name="text" select="."/>
</xsl:call-template>
</xsl:copy>
</xsl:template>
<xsl:template name="link-first-letters">
<xsl:param name="text"/>
<xsl:variable name="first-letter" select="substring($text, 1, 1)"/>
<a href="#{$first-letter}"><xsl:value-of select="$first-letter"/></a>
<xsl:if test="contains($text, )">
<xsl:text> </xsl:text>
<xsl:call-template name="link-first-letters">
<xsl:with-param name="text" select="substring-after($text, )"/>
</xsl:call-template>
</xsl:if>
</xsl:template>
</xsl:stylesheet>
Applied to this input document
<?xml version="1.0"?>
<root>
<wish>Hi jony</wish>
</root>
它产生以下产出:
<root>
<wish><a href="#H">H</a> <a href="#j">j</a></wish>
</root>