A number variable in string form always looks like this:
10000000
I would like it to look like this:
10 000 000
How can I do that? Can anybody help me?
Develop games in your browser. Powerful, performant & highly capable.
Found:)
RegexReplace(str(NumInput),"\d{1,3}(?=(\d{3})+(?!\d))","g","$&,")