Is it possible to allow only letters or numbers in a string in java ? for example :
String Text;
Text = jTextField1.getText();
now
if (Text is a number) {System.out.println("Invalid Input");}
|
Is it possible to allow only letters or numbers in a string in java ? for example :
now
|
||||
|
you have two choices to use
|
|||||
|
|
Addition: You could do it also like the following, though i recommend mKorbel's answer.
|
|||
|
|
Textin your case). – Howard Jun 17 '12 at 11:29if (Character.isDigit(text.charAt(len - 1)))withif (!Character.isDigit(text.charAt(len - 1)))and I guess it will work for your scenario as well :-) – nIcE cOw Jun 17 '12 at 12:40