字符串可能具有以下几种情况:
string|requiredIf:type,mobile|max:9|min:9|mobile
string|required|max:9|min:9|mobile
string|max:9|min:9|mobile|required
required|string|max:9|min:9|mobile
string|max:9|min:9|mobile
现在需要判断字符串中仅包含 required 的情况,我是做php开发的,现在用strpos有可能误判 requiredIf 了,因此想用个正则解决问题,但对正则不熟,求高手帮忙看看正则能否解决问题,谢谢。