Fucntion variables format numbers function
ArborX


Summary
Examples of parameters.

The following willl output a number in a European style format, with a comma as a decimal separator, and a full-stop as the grouping separator.

 ^[format_num 1234.5, "#.##0,00", "grouping-separator=’.’; decimal-separator=’,’"]

Will output "1.234,50".Note that the same format pattern without the third parameter specifiedwill output "1234.500".

Overriding the "zero-digit" will change what symbols are used instead of numbers, i.e.

 ^[format_num 1234.5, "#,##a.aa","zero-digit=’a’"]

Will output "b,cde.fa".


Document created on 22-Nov-2004 (revision 0)