1 Star 0 Fork 0

c./goframe

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
builtin_email.go 906 Bytes
Copy Edit Raw Blame History
admin authored 2024-11-08 04:16 . 2024-11-7
// 版权归GoFrame作者(https://goframe.org)所有。保留所有权利。
//
// 本源代码形式受MIT许可证条款约束。
// 如果未随本文件一同分发MIT许可证副本,
// 您可以在https://github.com/gogf/gf处获取。
// md5:a9832f33b234e3f3
package builtin
import (
"errors"
gregex "gitee.com/go_888/goframe/text/gregex"
)
// RuleEmail 实现了 `email` 规则:
// 邮箱地址。
//
// 格式:email
// md5:238fc353e79c531a
type RuleEmail struct{}
func init() {
Register(RuleEmail{})
}
func (r RuleEmail) Name() string {
return "email"
}
func (r RuleEmail) Message() string {
return "{field}字段值`{value}`邮箱地址格式不正确"
}
func (r RuleEmail) Run(in RunInput) error {
ok := gregex.X是否匹配文本(
`^[a-zA-Z0-9_\-\.]+@[a-zA-Z0-9_\-]+(\.[a-zA-Z0-9_\-]+)+$`,
in.Value.String(),
)
if ok {
return nil
}
return errors.New(in.Message)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/go_888/goframe.git
git@gitee.com:go_888/goframe.git
go_888
goframe
goframe
782a3f7170cf

Search