Files
2020-08-27 12:21:09 +08:00

8 lines
243 B
Java

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