:: KBs ::

Select only Alphanumeric Values

Created Date: 4/23/2008
Last Modified Date: 4/23/2008
In order to select all values that are alpha numeric you can convert all values that are not alphanumeric to an empty string value.

Regex.Replace(Value, "[^a-z0-9]", String.Empty, RegexOptions.IgnoreCase);
:: Regular Expressions :: Coding Basics ::