Not per se.
What you could do is, immediately after reading the number into some variable, append some letter to it (other than 'E') such as:myvariable = myvariable || 'P' Now MyVariable's value will be '0014613P' which REXX doesn't regard as a number, so no truncation of zeroes is performed. Of course, you can't then use it as a real number in REXX mathematical calculations.
And when you write it back out just clip off the last character:myvariable = LEFT(myvariable, 7)
|