位置:首頁 > Java技術 > java.lang > java.lang.String.matches()方法實例

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