Number.toLocaleString() number formats
Hi, I'm trying to output localized numbers using the Number.toLocaleString() method. I can't find any detailed info about this methood in extendscript implementation. It seems that it partially works:
In ESTK
$.locale = "en"
$.writeln (Number("12345678.90").toLocaleString()) // output 12345678.9
$.locale = "de"
$.writeln (Number("12345678.90").toLocaleString()) // output 12345678,9
So it changes the decimal separator, but nothing about thousands separator. My question is - can i somehow control this method's behavior by parameters, config files, etc.
