我的输入是:
<w:body>
<w:p>
<w:pPr>
<w:pStyle w:val="paragraph"/>
</w:pPr>
<w:r><w:t>1274394 The milk costs , $1.99 [12] test Figure 1, Table 1</w:t></w:r>
</w:p>
<w:p>
<w:pPr>
<w:pStyle w:val="paragraph"/>
</w:pPr>
<w:r><w:t>sample text Figure 1 and [1]</w:t></w:r>
</w:p>
</w:body>
我想使用 XSLT "analyze-string" 得到如下输出
<w:body>
<w:p>
<w:pPr>
<w:pStyle w:val="paragraph"/>
</w:pPr>
<w:r><w:t>1274394 The milk costs , $1.99 <ref>[12]</ref> test <fig>Figure 1</fig>, <tab>Table 1</tab></w:t></w:r>
</w:p>
<w:p>
<w:pPr>
<w:pStyle w:val="paragraph"/>
</w:pPr>
<w:r><w:t>sample text Figure 1 and [1]</w:t></w:r>
</w:p>
</w:body>
XSLT 如下:
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="w:t/text()">
<xsl:variable name="phase1">
<xsl:apply-templates select="." mode="fig" />
</xsl:variable>
<xsl:variable name="phase2">
<xsl:apply-templates select="." mode="tab" />
</xsl:variable>
<xsl:apply-templates select="$phase1" mode="ref" />
</xsl:template>
<xsl:template match="text()" mode="fig">
<xsl:analyze-string select="." regex="Figure (\d{{1,2}})">
<xsl:matching-substring>
<fig>
<xsl:value-of select="." />
</fig>
</xsl:matching-substring>
<xsl:non-matching-substring>
<xsl:value-of select="." />
</xsl:non-matching-substring>
</xsl:analyze-string>
</xsl:template>
<xsl:template match="text()" mode="ref">
<xsl:analyze-string select="." regex="\[(\d{{1,2}})\]">
<xsl:matching-substring>
<ref>
<xsl:value-of select="." />
</ref>
</xsl:matching-substring>
<xsl:non-matching-substring>
<xsl:value-of select="." />
</xsl:non-matching-substring>
</xsl:analyze-string>
</xsl:template>
<xsl:template match="text()" mode="tab">
<xsl:analyze-string select="." regex="Table (\d{{1,2}})">
<xsl:matching-substring>
<tab>
<xsl:value-of select="." />
</tab>
</xsl:matching-substring>
<xsl:non-matching-substring>
<xsl:value-of select="." />
</xsl:non-matching-substring>
</xsl:analyze-string>
</xsl:template>
<xsl:template match="@*|*|comment()|processing-instruction()" mode="ref">
<xsl:copy>
<xsl:apply-templates select="@*|node()" mode="ref"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
使用上面的 XSLT 我可以替换 Fig 和 ref,替换表我正在使用 Phase2 变量但我没有得到输出,有没有其他方法可以做到这一点?