Hi,
I've to convert double to 10 digits + 4 decimal.
so let say: I have a double 999,56. I've to get 00000009995600 -> without comma!
What I have is:
string.format("{0:0000000000.0000}", value) but what I get is: 0000000999,5600
so what I can do now is to search for the comma and delete it, but I would like to know if there is another "clean" way of formatting in this specific format?
Thanks!