0
votes
Format integer to string with 5 digits
Try this for a one-liner (well, two with error prevention):
function padZeroDigits(sVariable, iLength)
if (iLength <= len(sVariable)) then padZeroDigits = sVariable : exit fu …
