现在位置: 首页 > Java 教程 > 正文

Java matches() 方法

Java String类Java String类


matches() 方法用于检测字符串是否匹配给定的正则表达式。

调用此方法的 str.matches(regex) 形式与以下表达式产生的结果完全相同:

Pattern.matches(regex, str)

语法

public boolean matches(String regex)

参数

  • regex -- 匹配字符串的正则表达式。

返回值

在字符串匹配给定的正则表达式时,返回 true。

实例

public class Test {
	public static void main(String args[]) {
		String Str = new String("www.runoob.com");

		System.out.print("返回值 :" );
		System.out.println(Str.matches("(.*)runoob(.*)"));
		
		System.out.print("返回值 :" );
		System.out.println(Str.matches("(.*)google(.*)"));

		System.out.print("返回值 :" );
		System.out.println(Str.matches("www(.*)"));
	}
}

以上程序执行结果为:

返回值 :true
返回值 :false
返回值 :true

Java String类Java String类