|
@@ -209,18 +209,6 @@ func ErrNoRow() string {
|
|
|
return "<QuerySeter> no row found"
|
|
|
}
|
|
|
|
|
|
-//校验邮箱格式
|
|
|
-func ValidateEmailFormatat(email string) bool {
|
|
|
- reg := regexp.MustCompile(RegularEmail)
|
|
|
- return reg.MatchString(email)
|
|
|
-}
|
|
|
-
|
|
|
-//验证是否是手机号
|
|
|
-func ValidateMobileFormatat(mobileNum string) bool {
|
|
|
- reg := regexp.MustCompile(RegularMobile)
|
|
|
- return reg.MatchString(mobileNum)
|
|
|
-}
|
|
|
-
|
|
|
//判断文件是否存在
|
|
|
func FileIsExist(filePath string) bool {
|
|
|
_, err := os.Stat(filePath)
|