XSLT スタイルシートで、割り算する方法

XSLT (XML Stylesheet Language Transformations) では、割り算の演算子は/ではなく、div を使う。
<xsl:template match="aws:Item">
...
<xsl:variable name="width" select="aws:LargeImage/aws:Width"></xsl:variable>
<xsl:variable name="height" select="aws:LargeImage/aws:Height"></xsl:variable>
...
<xsl:value-of select="$width div 2"></xsl:value-of>
<xsl:value-of select="$height div 2"></xsl:value-of>
...
</xsl:template>
トラックバック URL: https://perltips.twinkle.cc/trackback/284
Posted on 2007-12-31 by yas |