0
0

Javaで「文字クラスを使って色々な文字にマッチするパターンを記述する」の動作を確認してみた

Posted at

概要

Javaで「文字クラスを使って色々な文字にマッチするパターンを記述する」の動作を確認してみました。
以下のページを参考にしました。

実装

以下のファイルを作成しました。

JSample8_1.java
import java.util.regex.*;

class JSample8_1{
  public static void main(String[] args){
    String regex = "Sun";
    Pattern p = Pattern.compile(regex);

    Matcher m1 = p.matcher("Today is Sunday");
    System.out.println(m1.find());  // true

    Matcher m2 = p.matcher("Sunrise");
    System.out.println(m2.find());  // true

    Matcher m3 = p.matcher("Ham Sandwich");
    System.out.println(m3.find());  // false
  }
}

以下のコマンドを実行しました。

$ javac JSample8_1.java 
$ java JSample8_1 
true
true
false

まとめ

何かの役に立てばと。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0