Remove the preceding zero from a string
000001 to 000010
It stores the following values
00001, 2, 3, 4, 5, 6, 7, 8, 8, 10
But I want something like this.
00001, 00002, 00003, 00004, 00005, 00006, 00007, 00008, 00009, 000010
The algorithm is removing those zeros from start. Please tell me how to do that.