Is it possible to format for example a double of value 0.41 to 00.41 using only String format ? In other words, is it possible to left zero pad doubles ? The result I would like should show as xx.xx
Unfortunately I haven't been able to find something simple although I am sure there is a simple solution... I have tried %02.2f but it doesn't work...
Thank you for your help !