母音で始まる単語を検索するには -
String クラスの Split() メソッドは、指定された文字列を文字列の配列に分割します。 Stringクラスのsplit()メソッド。
for ループで、取得した配列内の各単語をスキャンします。
charAt() メソッドを使用して、取得した配列内の各単語の最初の文字を取得します。
if ループを使用して、文字がいずれかの母音と等しいかどうかを確認し、等しい場合は単語を出力します。
次の内容を含むテキスト ファイルがあるとします。-
Tutorials Point originated from the idea that there exists a class of readers who respond better to on-line content and prefer to learn new skills at their own pace from the comforts of their drawing rooms.
次の Java プログラムは、このファイルの母音で始まる文字を出力します。ファイルすべての単語。
import java.io.File; import java.util.Scanner; public class WordsStartWithVowel { public static String fileToString(String filePath) throws Exception { Scanner sc = new Scanner(new File(filePath)); StringBuffer sb = new StringBuffer(); String input = new String(); while (sc.hasNextLine()) { input = sc.nextLine(); sb.append(input); } return sb.toString(); } public static void main(String args[]) throws Exception { String str = fileToString("D:\sample.txt"); String words[] = str.split(" "); for(int i = 0; i < words.length; i++) { char ch = words[i].charAt(0); if(ch == 'a'|| ch == 'e'|| ch == 'i' ||ch == 'o' ||ch == 'u'||ch == ' ') { System.out.println(words[i]); } } } }
originated idea exists a of on-line and at own of
以上がJava で母音で始まり長さ n の単語をすべて抽出するにはどうすればよいでしょうか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。