How can you strip non-ASCII characters from a string? (in C#) October 4, 2022 by Tarik string s = "søme string"; s = Regex.Replace(s, @"[^\u0000-\u007F]+", string.Empty);