char[] message = input.toCharArray ();
String x = "";
String encrypted2 = "";
for (int index = 0 ; index < message.length ; index++)
{
message [index]++;
message [index]++;
}
String encrypted = new String (message);
I need the for loop to run only if the char array contains letters from A to N.