regular expression validation in c# code example
Example: regex in c#
string regex = @"\me\";
steing testRegex = "Hit me with that titan Boa baby.";
Regex re = new Regex(regex);
if (re.IsMatch(testRegex)){
// WIll return true if it matches. # It does
return true;
} else {
// Will return false if it does not macth
return false;
}