Java
 Computer >> コンピューター >  >> プログラミング >> Java

Javaで母音と長さがnに等しいすべての単語を抽出するにはどうすればよいですか?


単語を見つけるには母音文字で始まります-

  • 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

  1. JavaでNumberFormatException(チェックされていない)を処理する方法は?

    NumberFormatException 未チェックです 例外 parseXXX()によってスローされます フォーマットできない場合のメソッド (変換)文字列を数値に変換 。 NumberFormatException 多くのメソッド/コンストラクターによってスローされる可能性があります java.langのクラスで パッケージ。以下はその一部です。 public static int parseInt(String s)throws NumberFormatException public static Byte valueOf(String s)throws Numb

  2. Java-例を使用して文字列をIntに変換する方法

    Javaで文字列をIntに変換する方法は?文字列に数値のみが含まれている場合、文字列をIntに変換する最善の方法は、Integer.parseInt()を使用することです。 またはInteger.valueOf() 。 文字列に数値と文字の両方が含まれている場合は、正規表現を使用して文字列から数値を抽出し、結果の文字列をIntに変換する必要があります。 注意すべき点の1つは、parseInt(String) プリミティブintを返しますが、valueOf(String) Integer()オブジェクトを返します。 Javaで文字列をIntに変換 Integer.parseInt()の使用