QGIS/resources/function_help/format_number
Juergen E. Fischer c6a4bb86aa context_help/function_help:
- remove en_US postfix
- remove translated files (translation were moved to ts files earlier)
- remove unused jQuery (python help doesn't use it anymore)
- change expression label in QgsQueryBuilder and add context help (partly fixes
  #8129)
2013-06-21 23:59:40 +02:00

17 lines
515 B
Plaintext

<h3>format_number() function</h3>
Returns a number formatted with the locale separator for thousands.
Also truncates the number to the number of supplied places.
<h4>Syntax</h4>
<code>format_number(number,places)</code><br>
<h4>Arguments</h4>
<code>number</code> - is number. The number to be formatted.
<br>
<code>places</code> - is int. The number of decimal places to truncate the string
to.
<h4>Example</h4>
<!-- Show example of function.-->
<code>format_number(10000000.332,2) &rarr; 10,000,000.33</code>