首页 > 编程 > regex > 正文

java正则表达式验证函数

2020-01-20 22:23:25
字体:
来源:转载
供稿:网友

复制代码 代码如下:

/**
* 验证 正则表达式
*
* @author zhujie regex 正则表达式 value 所属字符串
* @return boolean
*/
public static boolean regex(String regex, String value) {
Pattern p = Pattern.compile(regex);
Matcher m = p.matcher(value);
return m.find();
}

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表