Check whether there's some given SET of characters is in a String (C#)

Monday, April 26, 2010

System.Text.RegularExpressions.Regex.IsMatch(MyString, @"[^a-z0-9A-Z+#.]")

"^" sign to take the rest of the characters which are not in the set defined.