util.printf()
Hi.
I know how to use util.printf() to get a number formated as: 1234.56
n = util.printf("%.2f", n);
What I need is a number formated as: 1234,56
With a comma instead of a dot.
How can I do that?
Where can I find some infos since I cannot find nothing in the JS Reference?
Thank you.

