Monday 9 March 2009

Regular Experssions in C#

To use regular experssions in C# use System.Text.RegularExpressions class. It provides a Regex class, which objects represent your expressions. You can later use IsMatch(String textToCheck) method of this class to see wheter the textToCheck maches your expression:

1 comment: