I get following exception:
java.lang.NumberFormatException: For input string: "3693019260"
while calling
Integer.parseInt(s);
And I don't know why I get it.
- 3693019260 is smaller than 2^32
- 3693019260 is clearly a natural number
- the String is cleared from all non-digit elements with
s.replaceAll("[^0-9]", "")
So why do I get this exception?
According to the little bit of debugging I did, I saw that the number dips under multmin
but I don't know what this variable does and how I should interpret this observation.