vote up 2 vote down star

Say I have 2 strings,

String s1 = "AbBaCca";
String s2 = "bac";

I want to preform a check returning that s2 is contained within s1. I can do this with:

return s1.contains(s2);

I am pretty sure that contains() is case sensitive, however I can't determine this for sure from reading the documentation. If it is then I suppose my best method would be something like:

return s1.toLowerCase().contains(s2.toLowerCase());

All this aside, does anyone know of another (possibly better) way to accomplish this without caring about case-sensitivity?

flag

5 Answers

vote up 6 vote down check

Yes, contains is case sensitive. You can use java.util.regex.Pattern with the CASE_INSENSITIVE flag for case insensitive matching:

Pattern.compile(Pattern.quote(s2), Pattern.CASE_INSENSITIVE).matcher(s1).find();

EDIT: If s2 contains regex special characters (of which there are many) it's important to quote it first. I've corrected my answer since it is the first one people will see, but vote up Matt Quail's since he pointed this out.

link|flag
Great, I thought so but wasn't 100% on it. Thanks! :) – Kamikaze Mercenary Sep 17 '08 at 19:50
vote up 0 vote down

It will look for the exact sequence of characters that are passed to it.

If you want to ignore case then what you have there looks fine to me.

link|flag
vote up 1 vote down

DrJava would be an extremely easy way to test this when the documentation fails you. Just type a couple of test cases into its Interactions window, and you should find out.

link|flag
Thanks, I'll have to check it out - I'd never heard of it before now. – Kamikaze Mercenary Sep 17 '08 at 19:56
vote up 0 vote down

I'm not sure what your main question is here, but yes, .contains is case sensitive.

link|flag
vote up 3 vote down

One problem with the answer by Dave L. is when s2 contains regex markup such as \d etc.

You want to call Pattern.quote() on s2:

Pattern.compile(Pattern.quote(s2), Pattern.CASE_INSENSITIVE).matcher(s1).find();
link|flag
Nice catch Matt. I'm curious to know what method is more efficient - the lowercase contains, or your pattern solution. Isn't using a pattern less efficient for a single comparison, but more efficient for multiple comparisons? – Kamikaze Mercenary Sep 18 '08 at 16:55
The .toLowerCase().contains() method will probably be faster in most cases. I would probably prefer that style for lower complexity, too. – Matt Quail Sep 19 '08 at 0:09

Your Answer

Get an OpenID
or

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