位置:首页 > 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