Wednesday, September 20, 2006

.NET : Regular Expression

@ For decades, UNIX and Perl developers have used a complex but efficient technique for processing text: regular expressions.

@ A regular expression is a set of characters.

@ The "^" represents the start of the string, The "$" represents the end of the string. When validating input, MUST always begin regular expressions with a "^" character and end them with "$".