次のような xml があり、タグCellのテンプレートを属性aid5:cellstyle="hilite_white"と一致させたいとします。
:のような特別な文字を持つ属性を選択できないため、XSLT テンプレートでそれを行うにはどうすればよいですか?
<table>
<Cell aid:table="cell" aid5:cellstyle="hilite_white" aid:crows="1" aid:ccols="1" aid:ccolwidth="112" />
</table>
@ジム:これが私が試したことです
<xsl:template match="Cell[@aid5:cellstyle='hilite_white']">
<xsl:value-of select="local-name()" />
</xsl:template>