1<?xml version="1.0" encoding="ISO-8859-1"?>
2<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
3<xsl:output method="html" encoding="ISO-8859-1"/>
4
5<xsl:decimal-format name="czf"
6     decimal-separator=","
7     grouping-separator="&#160;"/>
8
9<xsl:template match="Kapital">
10<html>
11<title>Example xsltproc</title>
12<body>
13	<xsl:apply-templates select="Vklad"/>
14</body>
15</html>
16</xsl:template>	
17
18<xsl:template match="Vklad" >
19<xsl:value-of select="format-number(Kc,  '#&#160;###,00 K�', 'czf')"/>
20</xsl:template>
21
22</xsl:stylesheet>
23