私がする必要があるのは、各行から検索された単語を大文字にすることです。
File myFile = new File("AliceInWonderland.txt");
Scanner scan = new Scanner(myFile);
Scanner uInput = new Scanner(System.in);
String word;
int count = 0;
ArrayList<String> Alice = new ArrayList<String>();
System.out.println("Select the word that you would like to search for, from the book of alice and wonderland: ");
word = uInput.next();
while(scan.hasNext()){
Alice.add(scan.nextLine());
}
for(int i = 0;i <= Alice.size();i++){
if(Alice.get(i).contains(word)){
System.out.println(Alice.get(i));
count++;
}
else{
System.out.println(Alice.get(i));
}
}`
私は書くことSystem.out.println(Alice.get(i).ToUpper);
ができましたが、これは検索された単語を含むすべての行を大文字にし、私がしたいのは検索された単語を強調表示することだけです