formatNumber

From Documentation
Revision as of 07:03, 30 April 2012 by Benbai (talk | contribs)

The default method:

String formatNumber(Object number, String pattern);
i.e., CommonFns.formatNumber(Object, String)

Formats a number (Integer, BigDecimal...) into a string with the given pattern.

There is another extended built in function,

String formatNumber(Object number, String pattern, Locale locale);
i.e., CommonFns.formatNumber(Object, String, Locale)

Formats a number (Integer, BigDecimal...) into a string with the given pattern and locale.

You can define a method to use this function by xel-method


Parameters: In both default and extended function:

  • number - the Number to format
  • pattern - the pattern to apply

In extended function only:

  • locale - the locale to apply

Version History

Last Update : 2012/04/30


Version Date Content
6.0.1    



Last Update : 2012/04/30

Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.