public class StringUtilities { public Character getMiddleCharacter(String word){ if(word.length()%2 == 0){ return word.charAt(word.length()/2); } else{ return word.charAt(word.length()/2); } } public String removeCharacter(String value, char charToRemove){ StringBuilder b = new StringBuilder(value); /*for(int i=0;i