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.
如何验证输入的格式是否正确?我需要检查像 JUN-12 这样的格式。即 MON-YY 格式。该字段在 Model 中为字符串类型。
我怎样才能检查这个?
如果您验证模型,您可以使用RegularExpressionAttribute.
RegularExpressionAttribute
如果您在 Controller 中验证,则可以使用纯正则表达式。