Hi
I am trying to convert a string which has few zeroes on the leftside of the nonzero digit. I use
Integer.parseInt
but then the zeroes are gone, but I need them. How do I fix this?
The number of zeroes keep on changing if the string is different, so I cannot manually add them after conversion.
Please help..