如何从字符串中去除非ASCII字符?(在C#中)
string s = "søme string"; s = Regex.Replace(s, @"[^\u0000-\u007F]+", string.Empty);