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