apoc.number.format
Function APOC Core
apoc.number.format(number) | format a long or double using the default system pattern and language to produce a string
Usage Examples
RETURN apoc.number.format(1234567.87) as output;
output |
---|
"1,234,567.87" |
RETURN apoc.number.format(12345, '#,##0.00;(#,##0.00)', 'it') AS output;
output |
---|
"12.345,00" |
RETURN apoc.number.format('aaa') as output;
output |
---|
NULL |
Was this page helpful?