Files

8 lines
243 B
Java
Raw Permalink Normal View History

2020-08-27 12:21:09 +08:00
package com.proxgrind.chameleon.defined;
public interface RegexCommon {
//邮箱匹配规则!
String email = "[\\w!#$%&'*+/=?^_`{|}~-]+(?:\\.[\\w!#$%&'*+/=?^_`{|}~-]+)*@(?:[\\w](?:[\\w-]*[\\w])?\\.)+[\\w](?:[\\w-]*[\\w])?";
}