Java String matches()
方法指示此字串是否與給定的正規表示式匹配。 呼叫str.matches(regex)
形式的此方法會產生與表示式Pattern.matches(regex,str)
完全相同的結果。
語法
以下是此方法的語法 -
public boolean matches(String regex)
regex
- 要與此字串匹配的正規表示式。true
。import java.io.*;
public class Test {
public static void main(String args[]) {
String Str = new String("Welcome to Tw511.com");
System.out.print("Return Value :" );
System.out.println(Str.matches("(.*)Yii(.*)"));
System.out.print("Return Value :" );
System.out.println(Str.matches("Yii"));
System.out.print("Return Value :" );
System.out.println(Str.matches("Welcome(.*)"));
}
}
執行上面查詢語句,得到以下結果:
Return Value :true
Return Value :false
Return Value :true