Validating Patterns with Regular Expressions
Learn how to validate fields against a custom format using regular expressions.
We'll cover the following...
Regular expressions define search patterns that can be used for validation purposes. In this lesson, we will show how to validate a currency input to match our custom format. We will create a field prizeMoney
to store the total earnings of the player. The entered value has to follow the $#,###,###
format. Values that do not match this format will result in a validation error. ...