I cannot find a formatting syntax that will keep the number of places consistent by filling in zeros. The manual keeps leading me to the number format which is all about decimals.
ie
$a = "01";
$b = "02";
$c = $a + $b;
C returns "3" instead of "03".
I know there is a simple answer, but the manual is not simple-search friendly.
Any help is appreciated. Thanks.