private void ReplaceAccents(ref string input)
{
   input = Regex.Replace(input, @"[\xC0-\xC5\xE0-\xE5]", "a");  //Replace with "a"
...

C# C# code to replace accents ...

by Hiawatha, June 12, 2011 14:53, 6 refactorings, tagged with C# String Manipulation regex

I need to strip out things ...

4df33f9e8a81cc9d8046f057dbb4debc Talk