我有一些XSLT,可以拉回一系列药物名称(@ clinical-name)。我想从我的结果中过滤出特定的药物名称Claritin。
我对XSLT编码还比较陌生,因此除了添加
<xsl:template match="n:medication-order">
<div class="ddemrcontentitem ddremovable" style="margin-left: 1em; padding-left:1em; text-indent:-1em;">
<xsl:attribute name="dd:entityid">
<xsl:value-of select="@order-id"/>
</xsl:attribute>
<xsl:attribute name="dd:contenttype">
<xsl:text>MEDICATIONS</xsl:text>
</xsl:attribute>
<xsl:value-of select="@clinical-name"/>
</div>
</xsl:template>