左トリム テンプレートを作成しており、以下のテンプレートがあります。
<xsl:template name="str:left-trim">
<xsl:param name="string" select="''"/>
<xsl:variable name="tmp" select="substring($string, 1, 1)"/>
<xsl:if test="$tmp = ' '">
<xsl:variable name="tmp2" select="substring-after($string, $tmp)"/>
<xsl:choose>
<xsl:when test="$tmp2 != ''">
<xsl:call-template name="str:left-trim">
<xsl:with-param name="string" select="$tmp2"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$tmp2"/>
</xsl:otherwise>
</xsl:choose>
</xsl:if>
<xsl:if test="$tmp != ' '">
<xsl:value-of select="$string"/>
</xsl:if>
</xsl:template>
次のような引数を渡すと:
<xsl:variable name="str-test2">this is a america</xsl:variable>
私のテンプレートは問題なく動作しますが、以下のような引数を渡すと、テンプレートは失敗します。ブレーク(改行)に何か問題があると思います
<xsl:variable name="str-test2">
this is a america
</xsl:variable>
何か提案はありますか?