I'm checking to see if a special character such as !@#$ has been put in to an inputted phrase. I'm currently using isLowerCase, isUpperCase, and isDigit but I was wondering if there was a isSpecialCharacter. its for a simple ceaser cypher encryption I'm toying with. Below is what im doing for Upper case letters.
Ive read the template proposals and googled it but cant find anything
if(Character.isUpperCase(u))
{
u=u+(3%26);
if(u>'Z')
u=u-26;
}
}