ec_leading_zeros

one of the documented procedures in this installation of the ACS
Usage:
ec_leading_zeros   the_integer   n_desired_digits
What it does:
Adds leading zeros to an integer to give it the desired number of digits
Defined in: /web/philip/tcl/ecommerce-utilities.tcl

Source code:


    return [format "%0${n_desired_digits}d" $the_integer]


philg@mit.edu