I have two Strings: str1 and str2. How to check if str2 is contained within str1, ignoring case?
|
|
|||||
|
|
How about
|
|||
|
|
|
You can use the
Then call it using:
Notice that by creating your own method, you can reuse it. Then, when someone points out that you should use |
|||||
|
|
If you are able to use org.apache.commons.lang.StringUtils, I suggest using the following:
|
||||
|
|
|
I'd use a combination of the contains method and the
This will return:
|
||||
|
|
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:
(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. |
|||
|
|
|
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. |
|||||||||
|