Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的模型中有一个包含电子邮件地址的字段,我使用正则表达式验证该地址。该字段是可选的,但即使值为空也会触发正则表达式检查。
有什么干净的方法可以禁用对空值的检查,还是应该将正则表达式包装进去()??
()?
我不确定是否禁用,但使用交替很容易:
/^|your-original-regex$/