0
0

Javaで「文字列の先頭や末尾などの位置にマッチするパターンを記述する」の動作を確認してみた

Posted at

概要

Javaで「文字列の先頭や末尾などの位置にマッチするパターンを記述する」の動作を確認してみました。
以下のページを参考にしました。

実装

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

JSample9_1.java
import java.util.regex.*;

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

    Matcher m1 = p.matcher("Red Table");
    System.out.println(m1.find());  // true

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

    Matcher m3 = p.matcher("Border Color is Red");
    System.out.println(m3.find());  // false
  }
}

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

$ javac JSample9_1.java 
$ java JSample9_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