I am new in Julia.
Having a Float64 “1.24543123e6” which I want to print as a string in the Format “1,245,431.23” or “1.245.431,23” (de).
I am looking for something like
a) string number_format ( float $number , int $decimals = 0 , string $dec_point = “.” , string $thousands_sep = “,” ) [PHP]
or
b) Java Class Class NumberFormat / DecimalFormat.
Thanks!