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

Using the method replace(CharSequence target, CharSequence replacement) in String, how can I make the target case-insensitive?

For example, the way it works right now:

String target = "FooBar";
target.replace("Foo", "") would return "Bar"

String target = "fooBar";
target.replace("Foo", "") would return "fooBar"

How can I make it so replace (or if there is a more suitable method) is case-insensitive so that both examples return "Bar"?

Thanks.

share|improve this question

6 Answers

up vote 23 down vote accepted
    String target = "FOOBar";
    target = target.replaceAll("(?i)foo", "");
    System.out.println(target);

output: Bar

share|improve this answer
What if target contains $ or diacritical characters like á? – stracktracer Apr 5 '12 at 7:21
what do you mean? target=FOOBará, after replacing in above way output is: Bará – smas Apr 5 '12 at 7:31
1  
I mean two things: 1. "blÁÜ123".replaceAll("(?i)bláü") does not replace anything. 2. "Sentence!End".replaceAll("(?i)Sentence.") does maybe replace more than anticipated. – stracktracer Apr 11 '12 at 11:54
this is an awesome trick, thanks! – memnoch_proxy Jul 10 '12 at 22:16

If you don't care about case, then you perhaps it doesn't matter if it returns all upcase:

target.toUpperCase().replace("FOO", "");
share|improve this answer
You can also pass the Locale into toUpperCase(locale) if your dealing with characters like á. – rob Apr 24 at 15:09

Regular expressions are quite complex to manage due to the fact that some characters are reserved: for example, "foo.bar".replaceAll(".") produces an empty string, because the dot means "anything" If you want to replace only the point should be indicated as a parameter "\\.".

A simpler solution is to use StringBuilder objects to search and replace text. It takes two: one that contains the text in lowercase version while the second contains the original version. The search is performed on the lowercase contents and the index detected will also replace the original text.

public class LowerCaseReplace 
{
    public static String replace(String source, String target, String replacement)
    {
        StringBuilder sbSource = new StringBuilder(source);
        StringBuilder sbSourceLower = new StringBuilder(source.toLowerCase());
        String searchString = target.toLowerCase();

        int idx = 0;
        while((idx = sbSourceLower.indexOf(searchString, idx)) != -1) {
            sbSource.replace(idx, idx + searchString.length(), replacement);
            sbSourceLower.replace(idx, idx + searchString.length(), replacement);
            idx+= replacement.length();
        }
        sbSourceLower.setLength(0);
        sbSourceLower.trimToSize();
        sbSourceLower = null;

        return sbSource.toString();
    }


    public static void main(String[] args)
    {
        System.out.println(replace("xXXxyyyXxxuuuuoooo", "xx", "**"));
        System.out.println(replace("FOoBaR", "bar", "*"));
    }
}
share|improve this answer
    String str = "FooBar";

    if(str.toLowerCase().contains("foo")){
        str = str.replace("Foo", "");
        str = str.replace("foo", "");
    }

    System.out.println(str);
share|improve this answer
I don't think so. What if str = "FOOBar"? – smas Feb 20 '11 at 3:56

You could use either replaceAll or replaceFirst and pass it a regular expression as the first argument.

public class Test {
    public static void main(String[] args){
        System.out.println("FooBar".replaceAll("(?i)foo", ""));
    }
}
share|improve this answer

Not as elegant perhaps as other approaches but it's pretty solid and easy to follow, esp. for people newer to Java. One thing that gets me about the String class is this: It's been around for a very long time and while it supports a global replace with regexp and a global replace with Strings (via CharSequences), that last doesn't have a simple boolean parameter: 'isCaseInsensitive'. Really, you'd've thought that just by adding that one little switch, all the trouble its absence causes for beginners espcially could have been avoided. Now on JDK 7, String still doesn't support this one little addition! Well anyway, I'll stop griping. For everyone in particular newer to Java, here's your cut-and-paste deus ex machina. As I said, not as elegant and won't win you any slick coding prizes, but it works and is reliable. Any comments, feel free to contribute. (Yes, I know, StringBuffer is probably a better choice of managing the two character string mutation lines, but it's easy enough to swap the techniques.)

public String replaceAll(String findtxt, String replacetxt, String thestring, boolean isCaseInsensitive)
{
  if (thestring == null) { return null; }
  if (findtxt == null || findtxt.length() == 0) { return thestring; }
  if (findtxt.length() > thestring.length()) { return thestring; }

  int counter = 0;
  String thesubstr = "";

  while ( (counter < thestring.length()) && (thestring.substring(counter).length() >= findtxt.length()) )
  {   
   thesubstr = thestring.substring(counter, counter + findtxt.length());
   if (isCaseInsensitive)
   {
    if (thesubstr.equalsIgnoreCase(findtxt))
    {
      thestring = thestring.substring(0, counter) + replacetxt + thestring.substring(counter + findtxt.length());
      counter += replacetxt.length(); // Failing to increment counter by replacetxt.length() leaves you open 
                                      // to an infinite-replacement loop scenario: Go to replace "a" with "aa" but
                                      // increment counter by only 1 and you'll be replacing 'a's forever.
    } else
    {
      counter++; // No match so move on to the next character from which to check for a findtxt string match.
    }
   } else
   {
    if (thesubstr.equals(findtxt))
    {
      thestring = thestring.substring(0, counter) + replacetxt + thestring.substring(counter + findtxt.length());
      counter += replacetxt.length();
    } else
    {
      counter++;
    }
   }
  }

 return thestring;
}
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.