Here is a piece of code I tested for the conversion of the numbers 0 thru 99 into 20 strings of exactly 2 digits. The first is 04, the next 09, then 14,19,24,29, etc. all the way to 94, 99. The code: "{0:D2}" -f $d formats each number to exactly 2 digits. The $i used in the “for” loop is interpreted by PowerShell – it automatically assigns it to a float. ......