Is there a method in Java in which to see if an integer value contains characters?

1 answer

By definition, an integer value does not contain characters (apart from the minus sign), otherwise the value is invalid.

If you have a String and would like to check for foreign characters, you can try:
the matches() method using a regular expression.
For example, if you suspect alphabetic characters, you can check using:
if(someString.matches("[a-zA-Z]")
{
// do something
}

If you want to scan for all non-numeric characters, you can replace with
...matches("[^0-9]")...
Similar Questions
    1. answers icon 3 answers
  1. 1. What is Java SE?A. Java Standard Edition* B. Java Software Editor C. Java Scientific Edition D. Java Software Emulator 2.
    1. answers icon 1 answer
  2. PLZ HELP ASAP1. What is Java SE? A. Java Standard Edition B. Java Software Editor C. Java Scientific Edition D. Java Software
    1. answers icon 2 answers
    1. answers icon 1 answer
more similar questions