How to Format Leading Zeros for Numeric.sequence ?
I need to output Numeric.sequence with a specified number of digits. If the numeric value is less than the number of digits, I need leading zeros to be inserted... If I need 5 digits,
Ex: "12" = "00012"
Ex: "12392" = "12392"
Ex: "9" = "00009"
Any easy way to do this in a tMap?