Java String matches() 方法

返回 Java Strings 类


Java matches() 方法用来检查这个字符串是否匹配给定的正则表达式。 以 str.matches(regex) 形式调用此方法会产生与表达式 Pattern.matches(regex, str) 完全相同的结果。

语法

public boolean matches(String regex)

参数

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

返回值

当且仅当此字符串与给定的正则表达式匹配时,此方法才返回 true。

示例

public class Main {

   public static void main(String args[]) {
      String Str = new String("Welcome to jiyik.com");

      System.out.print("Return Value :" );
      System.out.println(Str.matches("(.*)jiyik(.*)"));

      System.out.print("Return Value :" );
      System.out.println(Str.matches("jiyik"));

      System.out.print("Return Value :" );
      System.out.println(Str.matches("Welcome(.*)"));
   }
}

运行示例

上面示例编译运行结果如下

Return Value :true
Return Value :false
Return Value :true

返回 Java Strings 类

查看笔记

扫码一下
查看教程更方便