xsl:template中的正则表达式

时间:2018-08-16 16:06:56

标签: regex xml xslt

如何以正确的方式编写此代码?

<xsl:template match="emp[matches(., 'Note(0[3-9]|1[0,1,6,8])_Line(0[1-9]|1[0-9]|2[0-9]|3[0-9]|4[0-9])_Col00')]">
    <xsl:copy use-attribute-sets="NoteNumber">
        <xsl:apply-templates select="@*|node()" />
    </xsl:copy>
</xsl:template>

上面的代码在OxygenXML中返回java.lang.StackOverflowError错误。

我在做什么错了?

0 个答案:

没有答案