1 Star 0 Fork 0

c./goframe

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
builtin_not_regex.go 926 Bytes
一键复制 编辑 原始数据 按行查看 历史
admin 提交于 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"
)
// RuleNotRegex 实现了 `not-regex` 规则:
// 值不应匹配自定义正则表达式模式。
//
// 格式:not-regex:pattern
// md5:ae2c4d23553ee3de
type RuleNotRegex struct{}
func init() {
Register(RuleNotRegex{})
}
func (r RuleNotRegex) Name() string {
return "not-regex"
}
func (r RuleNotRegex) Message() string {
return "{field}值`{value}`不应当满足正则匹配规则:{pattern}"
}
func (r RuleNotRegex) Run(in RunInput) error {
if gregex.X是否匹配文本(in.RulePattern, in.Value.String()) {
return errors.New(in.Message)
}
return nil
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/go_888/goframe.git
git@gitee.com:go_888/goframe.git
go_888
goframe
goframe
782a3f7170cf

搜索帮助