in reply to Re^6: Formatting dates while parsing CSV
in thread Add leading zeros to days/months in dates while parsing CSV

it appends a list of three elements (each containing a zero). So if the split returns a list of three, you end up with six elements (where you take the first three and ignore the rest); if there's nothing to split, you end up with the three freshly appended zeroes.

Probably exactly what you want.