XSLT – 正则表达式替换字符

前端之家收集整理的这篇文章主要介绍了XSLT – 正则表达式替换字符前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个这样的样本xsl,

<doc>
  <para>text . . .text</para>
  <para>text . . .text. . . . . .text</para>
</doc>

正如你所看到的,xml中有一些模式就像. . .
我需要的是用*替换点之间存在的空间.所以输出应该是这样的,

<doc>
  <para>text .*.*.text</para>
  <para>text .*.*.text.*.*.*.*.*.text</para>
</doc>

我为此写了以下xslt,

<xsl:template match="text()">
        <xsl:analyze-string select="." regex="(\.)(&#x0020;)(\.)">
            <xsl:matching-substring>
                <xsl:value-of select="replace(.,regex-group(2),'*')"/>
            </xsl:matching-substring>
            <xsl:non-matching-substring>
                <xsl:value-of select="."/>
            </xsl:non-matching-substring>
        </xsl:analyze-string>
    </xsl:template>

但它消除了所有其他空间,并给我以下结果,

<doc>
  <para>text .*. .text</para>
  <para>text .*. .text.*. .*. .*.text</para>
</doc>

如何修改我的XSLT以获得正确的输出..

@H_301_35@解决方法
我认为

<xsl:template match="text()">
    <xsl:analyze-string select="." regex="(\.)( )(\.)( \.)*">
        <xsl:matching-substring>
            <xsl:value-of select="replace(.,' ','*')"/>
        </xsl:matching-substring>
        <xsl:non-matching-substring>
            <xsl:value-of select="."/>
        </xsl:non-matching-substring>
    </xsl:analyze-string>
</xsl:template>

做的工作.正如LukStorms指出的那样,可以简化为

<xsl:template match="text()">
    <xsl:analyze-string select="." regex="\.( \.)+">
        <xsl:matching-substring>
            <xsl:value-of select="replace(.,'*')"/>
        </xsl:matching-substring>
        <xsl:non-matching-substring>
            <xsl:value-of select="."/>
        </xsl:non-matching-substring>
    </xsl:analyze-string>
</xsl:template>

猜你在找的正则表达式相关文章