I'm just looking for a way to return an integer in a thousand split strings without any restrictions.
I tried a different format specifier, but they all got me 2-digit numbers.
For instances, I would like
123456 => "123,456" and not "123,456,00"
or
1234567 => "1,234,567"
not "1,234,567.00"
source share