我正在编写一个 XSLT 转换,我希望在其中使用匹配函数进行正则表达式匹配和替换。
'matches ()' 的 Visual Studio 2008 是一个未知的 XSLT 函数。
<xsl:when test="matches(normalize-space(.),'^([(]I[)])(.+)')">
<xsl:analyze-string select="normalize-space(.)" regex="^^([(]I[)])(.+)"
flags="x">
<xsl:matching-substring>
<xsl:variable name="paraNumber">
<xsl:value-of select="regex-group(1)"/>
</xsl:variable>
<xsl:variable name="text">
<xsl:value-of select="regex-group(2)"/>
</xsl:variable>
<span class="upper-I-double-bracket">
<xsl:value-of select="$paraNumber"/>
</span>
<xsl:value-of select="$text"/>
</xsl:matching-substring>
</xsl:analyze-string>
</xsl:when>