keep alphanum + additional char
Posted: Mon Jul 19, 2010 6:09 am
Hello
In C# I'm using this expression to remove all non-aphanum char
But I also want to keep some extra char as "+-@"
What can be the expression to do that ?
Thank for your help
In C# I'm using this expression to remove all non-aphanum char
Code: Select all
Key=Regex.Replace(value.ToUpper(), "[\\W]", "");What can be the expression to do that ?
Thank for your help