sNotationParse

open fun sNotationParse(value: Number): String

Method to parse a numeric value and format without scientific notation

Return

value as String (e.g.) 9.2221111228E-6 -> 0.0000092221111228

Parameters

value

: value to fetch without scientific notation


open fun sNotationParse(decimals: Int, value: Number): String

Method to parse a numeric value and format without scientific notation

Return

value as String (e.g.) 9.2221111228E-6 -> 0.0000092221111228

Parameters

decimals

: number of digits after comma

value

: value to fetch without scientific notation


open fun sNotationParse(integers: Int, decimals: Int, value: Number): String

Method to parse a numeric value and format without scientific notation

Return

value as String (e.g.) 9.2221111228E-6 -> 0.0000092221111228

Parameters

integers

: number of digits before comma

decimals

: number of digits after comma

value

: value to fetch without scientific notation