文字の折り返しを使用して、ユーザー入力に基づいて文字列を変更する方法を見つけようとしています。文字列が「ボブは建物を建てるのが大好き」で、ユーザーが「b」と入力した場合、小文字と大文字の bs の両方を出力に変更する必要があります。
これに追加する必要があるのは次のとおりです。
System.out.print("\nWhat character would you like to replace?");
String letter = input.nextLine();
System.out.print("What character would you like to replace "+letter+" with?");
String exchange = input.nextLine();