Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Is there an alternative to string.Replace that is case-insensitive?

I need to find and replace a string and ignore the case in c#. What is the best way I can accomplish this? Regex?

share|improve this question
Well, here states the 'best way'. So that is most likely performance wise, which isn't handled in the question you added. – Jan Jongboom Sep 7 '10 at 13:59
Performance isn't an issue this app will only run once! I'll just go with the simple regex method. – Mike Sep 7 '10 at 14:03

marked as duplicate by jjnguy, Ahmad Mageed, Justin Niessner, Filip Ekberg, ho1 Sep 7 '10 at 20:21

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 8 down vote accepted

If performance isn't that much of an issue:

//            Input  Find  Replace
Regex.Replace("Jan", "ja", "", RegexOptions.IgnoreCase);

Otherwise, check this article. Fastest alghoritm found there is:

private static string ReplaceEx(string original, 
                    string pattern, string replacement)
{
    int count, position0, position1;
    count = position0 = position1 = 0;
    string upperString = original.ToUpper();
    string upperPattern = pattern.ToUpper();
    int inc = (original.Length/pattern.Length) * 
              (replacement.Length-pattern.Length);
    char [] chars = new char[original.Length + Math.Max(0, inc)];
    while( (position1 = upperString.IndexOf(upperPattern, 
                                      position0)) != -1 )
    {
        for ( int i=position0 ; i < position1 ; ++i )
            chars[count++] = original[i];
        for ( int i=0 ; i < replacement.Length ; ++i )
            chars[count++] = replacement[i];
        position0 = position1+pattern.Length;
    }
    if ( position0 == 0 ) return original;
    for ( int i=position0 ; i < original.Length ; ++i )
        chars[count++] = original[i];
    return new string(chars, 0, count);
}
share|improve this answer
2  
Remember to use Regex.Escape() on the strings that might contain RegEx special characters. – Chris Taylor Sep 7 '10 at 14:00
string stringToReplace = "Some string";
string pattern = "Regex pattern";
string replaceWith = "";

string newString = Regex.Replace(stringToReplace, pattern, replaceWith, RegexOptions.IgnoreCase);
share|improve this answer

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