I’m trying to export some data onto a tex file. But, the numbers are often huge and I want to represent the using the scientific notation. I’ve been searching the forums for a solution, but couldn’t find one.
What I expect is simple
julia> convert_float2string(1234.23322)
"1.23e+3"
I’m aware of the print function that is capable of printing in scientific notation format but I intend to store the converted value as a string.