txtファイル
myfile.txtのいくつかの単語を数えたい
ABC,xyzwegwegwe
ABC,12312312312
ABC,sdfsdf3sdfs
「ABC」という単語を数えるにはどうすればよいですか?
出力:"ABC" have: 3
while (myfile.hasNextLine()) {
line = myfile.nextLine();
lines.add(line);
if(xxxxx){ //if have ABC, words++
words++;
}
}
System.out.print("\"ABC\" have: "+words);