validate.go 236 字节 原文件 审查 历史 永久链接 1 2 3 4 5 6 7 8 9 10 11 package utils import ( "regexp" ) var ( PhoneMatch, _ = regexp.Compile(`^1[0-9]{10}$`) EmailMatch, _ = regexp.Compile(`^[a-zA-Z0-9_-]+@[a-zA-Z0-9_-]+(\.[a-zA-Z0-9_-]+)+$`) ChineseMatch, _ = regexp.Compile(`[\u4e00-\u9fa5]`) )