I want to zerofill a number so that the resulting nunber always has two chars.
For example: 1.7 -> 01.7 34.7 -> 34.6 // Remains the same, already two chars
I tried using printf('%05.1f', 12.2);
but this always adds a char to the number no matter what. I only want that to happen when it has only one char (< 10). Also decimals should not be removed.