How can you strip non-ASCII characters from a string? (in C#)
string s = "s?me string"; s = Regex.Replace(s, @"[^u0000-u007F]+", string.Empty);
1.4m articles
1.4m replys
5 comments
57.0k users