I want to check a string to see if it contains the ^ symbol, and if it does display a message to the user.
Thanks
Pattern p = Pattern.compile("[a-z0-9 ]", Pattern.CASE_INSENSITIVE);
Matcher m = p.matcher("StringGoesHere");
boolean b = m.find();
if (b){
System.out.println("bad");
} else {
System.out.println("fine");
}