niz(<num>{,<int>})
string
A integer numeric value as a string with leading zeros.
<num>
The numeric value to be converted to a string. It will be integerized before
the conversion.
<int>
The number of significant figures. If the output has less than this number
leading zeros are inserted. Its maximum value is 32.
Output a number with significance 5.
numeric n = 999 string s5 = niz(n,5) # This will produce 00999
Functions: |
|