Converting an object .tostring() removes the leading zeros. The object is not a fixed length, so I can't do object.tostring("0000000") where the number of zeros represents the fixed length.
An example object value is "0357" when I convert that object .tostring it becomes "357".
Is there a method for keeping the leading zeros where the length is not known?
357, not0357. – LukeH Oct 18 '10 at 16:43ToStringand no need to worry about leading zeroes; just display it (or do whatever it was that you needed to do with it). – LukeH Oct 18 '10 at 16:51