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.

I have two Strings: str1 and str2. How to check if str2 is contained within str1, ignoring case?

share|improve this question
Both indexOf and contains go character by character, so if you need faster string searching (which you can get), then you would need to implement one of many published algorithms. – Stefan Kendall Feb 16 '10 at 17:55
Possible duplicate: stackoverflow.com/questions/86780/… – Abhishek Rakshit Apr 27 '12 at 20:51
I have the same question here is the answer:) stackoverflow.com/a/86832/621951 – Günay Gültekin Apr 8 at 20:19

8 Answers

up vote 93 down vote accepted
str1.toLowerCase().contains(str2.toLowerCase())
share|improve this answer
3  
This isthe more semantically correct solution. – Stefan Kendall Feb 16 '10 at 17:54

How about matches ?

String string = "Madam, I am Adam";

// Starts with
boolean  b = string.startsWith("Mad");  // true

// Ends with
b = string.endsWith("dam");             // true

// Anywhere
b = string.indexOf("I am") > 0;         // true

// To ignore case, regular expressions must be used

// Starts with
b = string.matches("(?i)mad.*");

// Ends with
b = string.matches("(?i).*adam");

// Anywhere
b = string.matches("(?i).*i am.*");
share|improve this answer
+1 nice answer, thank for sharing this :) – RDC Jun 28 '12 at 13:54

You can use the toLowerCase() method:

public boolean contains( String haystack, String needle ) {
  haystack = haystack == null ? "" : haystack;
  needle = needle == null ? "" : needle;

  // Works, but is not the best.
  //return haystack.toLowerCase().indexOf( needle.toLowerCase() ) > -1

  return haystack.toLowerCase().contains( needle.toLowerCase() )
}

Then call it using:

if( contains( str1, str2 ) ) {
  System.out.println( "Found " + str2 + " within " + str1 + "." );
}

Notice that by creating your own method, you can reuse it. Then, when someone points out that you should use contains instead of indexOf, you have only a single line of code to change.

share|improve this answer
3  
Remember to add Javadoc about the behaviour when passing null objects. – Thorbjørn Ravn Andersen Feb 16 '10 at 18:25

If you are able to use org.apache.commons.lang.StringUtils, I suggest using the following:

String container = "aBcDeFg";
String content = "dE";
boolean containerContainsContent = StringUtils.containsIgnoreCase(container, content);
share|improve this answer

I'd use a combination of the contains method and the toUpper method that are part of the String class. An example is below:

String string1 = "AAABBBCCC"; <br>
String string2 = "DDDEEEFFF";<br>
String searchForThis = "AABB";<br>

System.out.println("Search1="+string1.toUpperCase().contains(searchForThis.toUpperCase()));<br>

System.out.println("Search2="+string2.toUpperCase().contains(searchForThis.toUpperCase()));<br>

This will return:

Search1=true
Search2=false

share|improve this answer
Won't work. Some weird, international characters are converted to multiple characters when converted to lower-/upper-case. For example: "ß".toUpperCase().equals("SS") – Simon Apr 5 at 22:36

You can try with the Class Scanner from java.util package

share|improve this answer

I also favor the RegEx solution. The code will be much cleaner. I would hesitate to use toLowerCase() in situations where I knew the strings were going to be large, since strings are immutable and would have to be copied. Also, the matches() solution might be confusing because it takes a regular expression as an argument (searching for "Need$le" cold be problematic).

Building on some of the above examples:

public boolean containsIgnoreCase( String haystack, String needle ) {
  if(needle.equals(""))
    return true;
  if(haystack == null || needle == null || haystack .equals(""))
    return false; 

  Pattern p = Pattern.compile(needle,Pattern.CASE_INSENSITIVE+Pattern.LITERAL);
  Matcher m = p.matcher(haystack);
  return m.find();
}

example call: 

String needle = "Need$le";
String haystack = "This is a haystack that might have a need$le in it.";
if( containsIgnoreCase( haystack, needle) ) {
  System.out.println( "Found " + needle + " within " + haystack + "." );
}

(Note: you might want to handle NULL and empty strings differently depending on your needs. I think they way I have it is closer to the Java spec for strings.)

Speed critical solutions could include iterating through the haystack character by character looking for the first character of the needle. When the first character is matched (case insenstively), begin iterating through the needle character by character, looking for the corresponding character in the haystack and returning "true" if all characters get matched. If a non-matched character is encountered, resume iteration through the haystack at the next character, returning "false" if a position > haystack.length() - needle.length() is reached.

share|improve this answer

Well since this is homework if you really want to impress your Professor, use a regex, just look them up a good book is Mastering Regular Expressions by O'Reilly, but it's heavy towards perl, although many of the concepts can apply to most regular expressions.

share|improve this answer
1  
This is one of the worst answers of all time. Do you have any idea what kind of overhead is involved in loading a regex engine versus calling a method that compares strings linearly? – Stefan Kendall Feb 16 '10 at 18:34
1  
The OP doesn't mention anything about speed, it just asks how to find a string, if you're not in a speed critical situation, this can be a solution as well. I suppose it may not "impress" your professor as I mentioned it, poor choice of words, but it is a solution nonetheless. – onaclov2000 Feb 17 '10 at 13:26

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.