Re: Number format Exception
What is the maximum size of an int?
(Hint, it's less than the number you are trying to parse).
Also, a phone number is not an int.
It's a String that just happens to consist solely of digits.
For example:
01215551234
might be a valid phone number, but if you converted that to an int you would get:
1215551234
which is not the same.
ETA: Actually, just thought I'd add, it can also consist of a leading '+', if you're storing international dialling.
Re: Number format Exception
thanks i really helped ....