如何从字符串中去除非ASCII字符?(在C#中)
如何从字符串中去除非ASCII字符?(在C#中)
回答:
string s = "søme string";s = Regex.Replace(s, @"[^\u0000-\u007F]+", string.Empty);
以上是 如何从字符串中去除非ASCII字符?(在C#中) 的全部内容, 来源链接: utcz.com/qa/422682.html
如何从字符串中去除非ASCII字符?(在C#中)
string s = "søme string";s = Regex.Replace(s, @"[^\u0000-\u007F]+", string.Empty);
以上是 如何从字符串中去除非ASCII字符?(在C#中) 的全部内容, 来源链接: utcz.com/qa/422682.html