XSLT format-number() Function
Complete XSLT Function Reference
Definition and Usage
The format-number() function is used to convert a number into a string.
Syntax
string format-number(number,format,[decimalformat])
|
Parameters
| Parameter |
Description |
| number |
Required. Specifies the number to be formatted |
| format |
Required. Specifies the format pattern. Here are some of
the characters used in the formatting pattern:
- # (Denotes a digit. Example: ####)
- 0 (Denotes leading and following zeros. Example: 0000.00)
- . (The position of the decimal point Example: ###.##)
- , (The group separator
for thousands. Example: ###,###.##)
- % (Displays the number as a percentage. Example: ##%)
- ; (Pattern separator. The first pattern will be used for positive numbers
and the second for negative numbers)
|
| decimalformat |
Optional. |
Example 1
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<body>
<xsl:value-of select='format-number(500100, "#.00")' />
<br />
<xsl:value-of select='format-number(500100, "#.0")' />
<br />
<xsl:value-of select='format-number(500100, "###,###.00")' />
<br />
<xsl:value-of select='format-number(0.23456, "##%")' />
<br />
<xsl:value-of select='format-number(500100, "#######")' />
</body>
</html>
</xsl:template>
</xsl:stylesheet>
|
View the XSL file and
View the result.
Complete XSLT Function Reference
Learn XML with <oXygen/> XML Editor - Free Trial!
 |
|
oXygen helps you learn to define,
edit, validate and transform XML documents. Supported technologies include XML Schema,
DTD, Relax NG, XSLT, XPath, XQuery, CSS.
Understand in no time how XSLT and XQuery work by using the intuitive oXygen debugger!
Do you have any XML related questions? Get free answers from the oXygen
XML forum
and from the video
demonstrations.
Download a FREE 30-day trial today!
|
|