MVC: Regular Expressions
Please see my other MVC articles. Enforcing valid formats on user input. Most user-input forms’ business rules indicate specific formats for the data they receive. MVC enables developers to enforce those rules very easily by using regular expression within their custom models. To illustrate this feature, I will begin with a simple Create form. As…