String removeCharAt(final int charIndex) { final List<String> charList = split("").toList(); charList.removeAt(charIndex); return charList.join(); }