Say you have a string that you want to test to make sure that it contains an integer before you proceed with other the rest of the code. What would you use, in java, to find out whether or not it is an integer?
|
|
If you want to make sure that it is only an integer and convert it to one, I would use parseInt in a |
|||||
|
|
|||
|
|||||||
|
|
|
|||
|
|
|
I use the method matches() from the String class:
This way you can also validate that the range of the numbers is correct. |
|||
|
|
|
|
|||||
|
|
Regular Expressions, if you want to check whether the given string contains an integer or not. |
|||
|
|
|
If you just want to test, if a String contains an integer value only, write a method like this:
|
|||
|
|
You can use apache StringUtils.isNumeric . |
|||
|
|
|
|||
|