I tried int.parse, and convert class to convert a string to int.
While I'm converting. I'm losing the 0 in the beginning which i don't want.
Ex : 09999 becomes 9999 - I don't want this.
I want to keep it as it is.
How can i do that?
|
You cannot. An Perhaps there is a different problem here. Why do you need to do this? Maybe there's a better way to do what you want to do. |
|||
|
|
|
If you want to do something like always print your number with 5 places, it goes like
|
|||
|
|
|
No, It's only when you convert it back to a string that you get "9999", presence or absence of the leading zero in said string is controlled by the conversion back to string. |
|||
|
|
|
||||
|
|
you cannot. you will have to maintain the value as a string if you want it to remain that way. |
|||
|
|
|
Int values cannot have leading zeros |
|||
|
If you are just converting to int to test the value, keep the original data around and use the string value of it when you want the leading zeor. If you require the integer to have zero padding after mathematically working with it you will have to format it with sprintf or the like whenever you output it. |
|||
|
|
|
you cant, but if you need to cast it to int and keep the zeros you can create a copy of it and then cast it to int, then you will have two versions of it one as int and one as string. |
|||
|
|
int. – lincolnk Jul 7 '11 at 18:38