xslt:format-number(double $value, string $picture) → string
Function signature
$value |
xs:double |
$picture |
xs:string |
Result |
xs:string |
Implemented. Changed in 7.4.1 to use the new XSLT 2.0 specification. This creates slight incompatibilities from the previous version, which remains available under the name format-number-1.0(). There is one known restriction: characters such as the decimal-separator are restricted to be in the Unicode BMP, i.e. below Unicode 0xFFFF. The current implementation does not attempt to cache or precompile the picture string. Also it does not detect the error that occurs when the same character is used in more than one role. Error checking has not been thoroughly tested.
xslt:format-number(double $value, string $picture, string $decimal-format) → string
Function signature
$value |
xs:double |
$picture |
xs:string |
$decimal-format |
xs:string |
Result |
xs:string |
See two-argument version of format-number().