java.lang.String.matches()方法範例


java.lang.String.matches() 方法通知此字串是否給定的正規表示式匹配。

宣告

以下是java.lang.String.matches()方法的宣告

public boolean matches(String regex)

引數

  • regex -- 這是到該字串要被匹配的正規表示式。

返回值

此方法返回true當且僅當此字串給定的正規表示式匹配。

異常

  • PatternSyntaxException -- 如果正規表示式的語法無效。

例子

下面的例子顯示java.lang.String.matches()方法的使用。

package com.yiibai;

import java.lang.*;

public class StringDemo {

  public static void main(String[] args) {
  
    String str1 = "tutorials", str2 = "learning";
    
    boolean retval = str1.matches(str2);
    // method gets different values therefore it returns false
    System.out.println("Value returned = " + retval);

    retval = str2.matches("learning");
    // method gets same values therefore it returns true
    System.out.println("Value returned = " + retval);    

    retval = str1.matches("tuts");
    // method gets different values therefore it returns false
    System.out.println("Value returned = " + retval);
  }
}

讓我們來編譯和執行上面的程式,這將產生以下結果:

Value returned = false
Value returned = true
Value returned = false