动态更新 XSLT 中的文本节点



>我正在尝试根据检查它是否与某种模式匹配来更新 xml 中的文本节点

在 XSLT 1.0 中

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:regexp="http://exslt.org/regular-expressions">
    <xsl:output method="xml" version="1.0"/>
    <xsl:template match="@*|node()">
        <xsl:copy>
            <xsl:apply-templates select="@*|node()"/>
        </xsl:copy>
    </xsl:template>
    <xsl:template match="text()">
        <xsl:copy>
            <xsl:call-template name="CheckAndReplace">
                <xsl:with-param name="text" select="."/>
                <xsl:with-param name="pattern" select="&#129;"/>
            </xsl:call-template>
        </xsl:copy>
    </xsl:template>
    <xsl:template name="CheckAndReplace">
        <xsl:param name="text"/>
        <xsl:param name="pattern"/>
        <xsl:for-each select="regexp:match( $text, $pattern, 'gi' )">
            <xsl:copy-of select="regexp:replace( $text, $pattern, 'gi','*' )"
        </xsl:for-each>
    </xsl:template>
</xsl:stylesheet>

.XML:

<Root>
 <Name> Kabir </Name>
 <Id> &#129; </Id>
</Root>

这里的请求具有与我的模式匹配且需要替换的 ID 标签

所需结果:

<Root>
 <Name> Kabir </Name>
 <Id> * </Id>
</Root>

XSLT 1.0 中没有正则表达式。如果您的目标是将&#129;字符的所有匹配项替换为*请尝试:

<xsl:template match="text()">
    <xsl:value-of select="translate(., '&#129;', '*')" />
</xsl:template>

相关内容

  • 没有找到相关文章

最新更新