gpt4 book ai didi

regex - Laravel 5 验证正则表达式以实现精确的字符串匹配

转载 作者:行者123 更新时间:2023-12-02 04:23:03 25 4
gpt4 key购买 nike

我想为字符串添加验证规则,以与正则表达式模式中提供的任何字符串完全匹配。例如,status 必须完全是“Approved”或“Pending”,不能有其他内容。

'status' => 'required|regex:[???]'

最佳答案

您可以只使用 in 验证规则。

in:foo,bar,...

The field under validation must be included in the given list of values.

在你的情况下,这将是:

'status' => 'required|in:Approved,Pending'

关于regex - Laravel 5 验证正则表达式以实现精确的字符串匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28937015/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com