java insérer du char en chaîne à l'index

public String addChar(String str, char ch, int position) {
    return str.substring(0, position) + ch + str.substring(position);
}
Distinct Dog