输入XML如下所示:
<figure>
<subfigure>
<graphic id="c001_f001" position="center" fileref="images/9781626232396_c001_f001.jpg"/>
<legend><para><target/><emph type="bold"><emph type="italic">Fig. 1.1</emph> </emph><emph type="bold">Embryonic development</emph> (after Sadler)</para>
<para>Age in postovulatory days.</para>
</subfigure>
</figure>
输出应该是
<figure>
<subfigure id="c001">
<graphic id="c001_f001" position="center" fileref="images/9781626232396_c001_f001.jpg"/>
<legend><para><target/><emph type="bold"><emph type="italic">Fig. 1.1</emph></emph><emph type="bold">Embryonic development</emph> (after Sadler)</para>
<para>Age in postovulatory days.</para>
</subfigure>
</figure>
XSLT:
<xsl:template match="subfigure">
<xsl:copy>
<xsl:attribute name="id">
<xsl:value-of select="graphic/@id"></xsl:value-of>
</xsl:attribute>
<xsl:apply-templates select="node() | @*"/>
</xsl:copy>
</xsl:template>
每次属性&#34; id&#34;价值是不同的。我们只需要复制并粘贴&#34; id&#34;的第一部分。值为子图id。能否帮助我们解决这个问题。
答案 0 :(得分:2)
您可以在此处使用substring-before
。
<xsl:template match="subfigure">
<xsl:copy>
<xsl:attribute name="id">
<xsl:value-of select="substring-before(graphic/@id, '_')" />
</xsl:attribute>
<xsl:apply-templates select="node() | @*"/>
</xsl:copy>
</xsl:template>
或者,更好的是,使用Attribute Value Template
简化模板<xsl:template match="subfigure">
<subfigure id="{substring-before(graphic/@id, '_')}">
<xsl:apply-templates select="node() | @*"/>
</subfigure>
</xsl:template>
注意,如果您真的想使用正则表达式,可以使用replace
代替
<subfigure id="{replace(graphic/@id, '(.+)(_.+)', '$1')}">