public static String charRemoveAt(String str, int p) { return str.substring(0, p) + str.substring(p + 1); }