You've already forked ChameleonBLEAPI
mirror of
https://github.com/RfidResearchGroup/ChameleonBLEAPI.git
synced 2026-05-12 11:20:47 -07:00
8 lines
243 B
Java
8 lines
243 B
Java
package com.proxgrind.chameleon.defined;
|
|
|
|
public interface RegexCommon {
|
|
|
|
//邮箱匹配规则!
|
|
String email = "[\\w!#$%&'*+/=?^_`{|}~-]+(?:\\.[\\w!#$%&'*+/=?^_`{|}~-]+)*@(?:[\\w](?:[\\w-]*[\\w])?\\.)+[\\w](?:[\\w-]*[\\w])?";
|
|
}
|