Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can you strip non-ASCII characters from a string? (in C#)

share|improve this question

7 Answers

up vote 117 down vote accepted
string s = "søme string";
s = Regex.Replace(s, @"[^\u0000-\u007F]", string.Empty);
share|improve this answer
8  
For those of us RegEx'd challenged, would you mind writing out in plain english your RegEx pattern. In other words, "the ^ does this", etc... – Metro Smurf Sep 23 '08 at 22:45
13  
@Metro Smurf the ^ is the not operator. It tells the regex to find everything that doesn't match, instead of everything that does match. The \u####-\u#### says which characters match.\u0000-\u007F is the equivilent of the first 255 characters in utf-8 or unicode, which are always the ascii characters. So you match every non ascii character (because of the not) and do a replace on everything that matches. – Gordon Tucker Dec 11 '09 at 21:11
not 255, 127.. sorry bout that :) – Gordon Tucker Dec 11 '09 at 21:12
2  
Sometimes I feel the 1 up vote just isn't enough – Tim Gabrhel Jan 4 at 17:36

Here is a pure .NET solution that doesn't use regular expressions:

        string inputString = "Räksmörgås";
        string asAscii = Encoding.ASCII.GetString(
            Encoding.Convert(
                Encoding.UTF8,
                Encoding.GetEncoding(
                    Encoding.ASCII.EncodingName,
                    new EncoderReplacementFallback(string.Empty),
                    new DecoderExceptionFallback()
                    ),
                Encoding.UTF8.GetBytes(inputString)
            )
        );

It may look cumbersome, but it should be intuitive. It uses the .NET ASCII encoding to convert a string. UTF8 is used during the conversion because it can represent any of the original characters. It uses an EncoderReplacementFallback to to convert any non-ASCII character to an empty string.

share|improve this answer
Perfect! I'm using this to clean a string before saving it to a RTF document. Very much appreciated. Much easier to understand than the Regex version. – Nathan Prather Oct 6 '09 at 16:48
10  
You really find it easier to understand? To me, all the stuff that's not really relevant (fallbacks, conversions to bytes etc) is drawing the attention away from what actually happens. – bzlm Oct 11 '09 at 15:28
got to love that example! – possan Mar 16 '11 at 11:03
3  
It's kind of like saying screwdrivers are too confusing so I'll just use a hammer instead. – Brandon Aug 3 '11 at 22:05
1  
@Brandon, actually, this technique doesn't do the job better than other techniques. So the analogy would be using a plain olde screwdriver instead of a fancy iScrewDriver Deluxe 2000. :) – bzlm Aug 4 '11 at 7:46
show 3 more comments

Inspired by philcruz's Regular Expression solution, I've made a pure LINQ solution

    public static string PureAscii(this string source, char nil = ' ')
    {
        var min = '\u0000';
        var max = '\u007F';
        return source.Select(c => c < min ? nil : c > max ? nil : c).ToText();
    }

    public static string ToText(this IEnumerable<char> source)
    {
        var buffer = new StringBuilder();
        foreach (var c in source)
            buffer.Append(c);
        return buffer.ToString();
    }

This is untested code.

share|improve this answer
1  
For those who didn't catch it, this is a C# 4.0 LINQ-based solution. :) – user29439 Jan 28 '10 at 20:49
2  
Instead of the separate ToText() method, how about replacing line 3 of PureAscii() with: return new string(source.Select(c => c < min ? nil : c > max ? nil : c).ToArray()); – agentnega Nov 10 '11 at 5:51

If you want not to strip, but to actually convert latin accented to non-accented characters, take a look at http://stackoverflow.com/a/10036907/562906

share|improve this answer

I used this regex expression:

    string s = "søme string";
    Regex regex = new Regex(@"[^a-zA-Z0-9\s]", (RegexOptions)0);
    return regex.Replace(s, "");
share|improve this answer
7  
This removes punctuation as well, just in case that's not what someone wants. – Drew Noakes Jul 18 '12 at 8:43

I found the following slightly altered range useful for parsing comment blocks out of a database, this means that you won't have to contend with tab and escape characters which would cause a CSV field to become upset.

parsememo = Regex.Replace(parsememo, @"[^\u001F-\u007F]", string.Empty);

If you want to avoid other special characters or particular punctuation check the ascii table

share|improve this answer

no need for regex. just use encoding...

sOutput = System.Text.Encoding.ASCII.GetString(System.Text.Encoding.ASCII.GetBytes(sInput));
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.