Remove Formatting from Number

If a number is used for arithmetic calculations (+, -, /, *) or numeric comparisons (> or <), it is recommended to first convert it to a clean number for higher reliability.

Examples

  • 1.000.000,23 is dot-grouped and will be converted to 1000000.23

  • 1,000,000.23 is comma-grouped and will be converted to 1000000.23

  • 1,000.000.23 has wrong format and an error report will be generated

Last updated