在字符串xslt的开头和结尾处链接时删除括号

时间:2016-09-26 10:52:56

标签: xslt xslt-2.0

我正在使用XSLT从标签中删除括号,但只有当它们位于开头和结尾时才会被删除。

例如

(标签(1))成为标签(1)

(标签)(1)保留(标签)(1)

编辑特定

更多例子:

(1)变为1

(这是)(a(标签))保持(这是)(a(标签))

(This(is)(a label))变为This(is)(标签)

之间的差异

我认为我有一个解决办法,即轮流测试角色并保留一个计数器来跟踪它们是否已被链接,但我仍然缺少某些东西。任何帮助表示赞赏。

这是我目前的代码:

    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xlink="http://www.w3.org/1999/xlink" exclude-result-prefixes="xs" version="2.0">
<xsl:output indent="yes" method="xml" doctype-system="\\ukfs11\Bks_RAPS\XML\DTDs\TFB\TFB.dtd"/>
<xsl:param name="labelstack"/>
<xsl:param name="labeltest"/>


<xsl:template match="//label[matches(.,'^\(.*\)$')]">
    <xsl:param name="labelstack" select="substring(., 1, string-length(.) - 1)"/>
    <xsl:param name="labelcounter"/>
    <xsl:call-template name="loop1">
        <xsl:with-param name="labelstack" select="$labelstack"/>
        <xsl:with-param name="labelcounter" select="0"/>
    </xsl:call-template>
</xsl:template>


<xsl:template name="loop1">
    <xsl:param name="labeltest" select="substring($labelstack, 1,1)"/>
    <xsl:param name="labelstack" select="substring($labelstack, 2)"/>
    <xsl:param name="labelcounter"/>
    <xsl:choose>
        <xsl:when test="string-length($labeltest) = 0">
         <xsl:copy>
                <xsl:value-of select="substring(., 2, string-length(.) - 1)"/>
         </xsl:copy>
        </xsl:when>

        <xsl:when test="$labeltest = '('">
            <xsl:variable name="labelcounter" select="$labelcounter + 1"/>
            <xsl:choose>

                <xsl:when test="$labelcounter != 0">
                    <xsl:call-template name="loop1">
                        <xsl:with-param name="labelcounter" select="$labelcounter"/>
                        <xsl:with-param name="labelstack" select="$labelstack"/>
                    </xsl:call-template>
                </xsl:when>

                <xsl:otherwise>
                    <xsl:copy>
                        <xsl:apply-templates select="node()|@*"/>
                    </xsl:copy>
                </xsl:otherwise>
            </xsl:choose>
        </xsl:when>

        <xsl:when test="$labeltest = ')'">
            <xsl:variable name="labelcounter" select="$labelcounter - 1"/>
            <xsl:choose>

                <xsl:when test="$labelcounter != 0">
                    <xsl:call-template name="loop1">
                        <xsl:with-param name="labelcounter" select="$labelcounter"/>
                        <xsl:with-param name="labelstack" select="$labelstack"/>
                    </xsl:call-template>
                </xsl:when>

                <xsl:otherwise>
                    <xsl:copy>
                        <xsl:apply-templates select="node()|@*"/>
                    </xsl:copy>
                </xsl:otherwise>

            </xsl:choose>
        </xsl:when>
        <xsl:otherwise>
        <xsl:call-template name="loop1">
                        <xsl:with-param name="labelcounter" select="$labelcounter"/>
                        <xsl:with-param name="labelstack" select="$labelstack"/>
                    </xsl:call-template>
        </xsl:otherwise>
    </xsl:choose>
</xsl:template>

<xsl:template match="node()|@*">
<xsl:copy>
    <xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>

1 个答案:

答案 0 :(得分:0)

样式表

chrome-extension://

转换

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
    xmlns:mf="http://example.com/mf"
    exclude-result-prefixes="xs mf"
    version="2.0">

    <xsl:function name="mf:nested-characters" as="xs:boolean">
        <xsl:param name="input" as="xs:string"/>
        <xsl:param name="pair" as="xs:string*"/>
        <xsl:sequence select="mf:match-pairs(string-to-codepoints($input), string-to-codepoints($pair[1]), string-to-codepoints($pair[2]), 0)"/>
    </xsl:function>

    <xsl:function name="mf:match-pairs" as="xs:boolean">
        <xsl:param name="input" as="xs:integer*"/>
        <xsl:param name="open" as="xs:integer"/>
        <xsl:param name="close" as="xs:integer"/>
        <xsl:param name="count" as="xs:integer"/>
        <xsl:sequence select="
            if (not(exists($input)))
            then $count eq 0
            else if ($input[1] eq $open)
                 then mf:match-pairs(subsequence($input, 2), $open, $close, $count + 1)
                 else if ($input[1] eq $close)
                       then (if ($count eq 1 and exists($input[2]))
                             then false()
                             else mf:match-pairs(subsequence($input, 2), $open, $close, $count - 1))
                       else mf:match-pairs(subsequence($input, 2), $open, $close, $count)"/>
    </xsl:function>

    <xsl:template match="@* | node()">
        <xsl:copy>
            <xsl:apply-templates select="@* , node()"/>
        </xsl:copy>
    </xsl:template>

    <xsl:template match="label[matches(., '^\(.*\)$')][mf:nested-characters(., ('(', ')'))]">
        <xsl:copy>
            <xsl:value-of select="replace(., '^\(|\)$', '')"/>
        </xsl:copy>
    </xsl:template>

</xsl:stylesheet>

进入

<root>
    <label>(label (1))</label>
    <label>(label) (1)</label>
    <label>(1)</label>
    <label>(This is)(a (label))</label>
    <label>(This (is) (a label))</label>
</root>