Monday, 16 December 2013

RegularExpressionValidator characters that compares values entered with a specified pattern.

RegularExpressionValidator characters and their meanings:

Sign Meaning
^ Specifies that checking starts from here
$ Specifies that checking ends here
[] Checks that the value entered match with any of the characters that are in the square brackets
\w Allows any value to be entered
\d{} "\d" specifies that the value entered is a digit and {} specifies the number of occurences of the specified data type
+ Specifies that one or more elements to be added to the expression being checked

No comments:

Post a Comment