XSLT 1.0转换编号用字符串括在括号中

时间:2013-11-26 19:58:18

标签: xml xslt xslt-1.0 libxslt

我正在尝试转换占位符字符串,如下所示:

<param>Hello {0}</param>

输出

Hello <%- {0} ->
<ini>
    <params>
        <param name=hello">Hello {0}</param>
    </params>
</ini>

有什么建议吗?

2 个答案:

答案 0 :(得分:0)

这应该这样做,如果只有一个令牌,否则会变得更加困难。

<xsl:template match="param">
  <xsl:value-of select="substring-before(.,'{')"/>
  <xsl:text>&lt;%- </xsl:text>
  <xsl:value-of select="substring-after(substring-before(.,'}'),'{')"/>
  <xsl:text> -&gt;</xsl:text>
  <xsl:value-of select="substring-after(.,'}')"/>
</xsl:template>

答案 1 :(得分:0)

我忘记发布我的解决方案,万一有人碰到这个。我最终将占位符的定义更改为{%token%}。

<xsl:template name="tokenReplacer">
    <xsl:param name="strToConvert" />
    <xsl:variable name="after" select="substring-after($strToConvert,'{%')"/>
    <xsl:choose>
        <xsl:when test="contains($after,'%}')">
            <xsl:value-of select="substring-before($strToConvert, '{%')" />
            <xsl:text>&lt;%=</xsl:text>
            <xsl:value-of select="substring-before($after,'%}')"/>
            <xsl:text>%&gt;</xsl:text>
            <xsl:call-template name="tokenReplacer">
                <xsl:with-param name="strToConvert" select="substring-after($after,'%}')"/>
            </xsl:call-template>
        </xsl:when>
        <xsl:otherwise>
            <xsl:value-of select="$strToConvert"/>
        </xsl:otherwise>
    </xsl:choose>
</xsl:template>