扩展阅读
当前位置: 编程语言>java/jsp
java命名空间java.util.regex类pattern的类成员方法: matches定义及介绍
发布时间:2014-2-17
本文导语:
matches
public static boolean matches(string regex,
charsequence input)
编译给定正则表达式并尝试将给定输入与其匹配。
调用此便捷方法的形式
pattern.matches(regex, input);
与表达式
pattern.compile(regex).matcher(input).matc...