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

String string1 = "abCdefGhijklMnopQrstuvwYz"; String string2 = "ABC";

I had been using string1.startsWith(string2), which would return false in the above example, but now I need to ignore case sensitivity, and there is not a String.startsWithIgnoreCase().

Besides doing

 string1.toLowerCase.startsWith(string2.toLowerCase());

is there an efficient way to see if string1 starts with string2 in a case-insensitive way?

share|improve this question
thanks for the anonymous "-1", whoever gave it. – Jason S Apr 8 '10 at 20:40

5 Answers

up vote 9 down vote accepted

The regionMatches method has a case sensitive parameter.

share|improve this answer
cool, thanks! I just noticed java2s.com/Code/Java/Data-Type/… which seems to take this approach. – Jason S Apr 8 '10 at 19:57
+1 this was new to me too. – Péter Török Apr 8 '10 at 19:59

Use StringUtils library.

    StringUtils.startsWithIgnoreCase("abCdefGhijklMnopQrstuvwYz", "ABC"); // true

http://commons.apache.org/lang/api/org/apache/commons/lang/StringUtils.html#startsWithIgnoreCase%28java.lang.String,%20java.lang.String%29

share|improve this answer

How about this:

string2.equalsIgnoreCase(string1.substring(0, string2.length())
share|improve this answer
public static boolean startsWithIgnoreCase(String s, String w)
    {
        if (w==null)
            return true;

        if (s==null || s.length()<w.length())
            return false;

        for (int i=0;i<w.length();i++)
        {
            char c1=s.charAt(i);
            char c2=w.charAt(i);
            if (c1!=c2)
            {
                if (c1<=127)
                    c1=Character.toLowerCase(c1);
                if (c2<=127)
                    c2=Character.toLowerCase(c2);
                if (c1!=c2)
                    return false;
            }
        }
        return true;
    }

By the way are you sure you need efficiency here?

share|improve this answer
Character.toLowerCase() would handle all unicode charaters. – bitc Apr 8 '10 at 19:55
Am I sure I need it: no. But I may in the future, in which case I want to know an alternative. Your code snippet looks like it is from java2s (java2s.com/Code/Java/Data-Type/StartsWithIgnoreCase.htm), please cite sources, and this does not handle Unicode. – Jason S Apr 8 '10 at 19:55
Of course it is taken from a link. I can cite the original link, I can also write 15 different versions of it just to show up I'm able to do it :) But wasting so much time for a quite useless question seemed too much.. then chars on JDK are unicode, so it should handle unicode, read documentation before spending time searching if a simple snippet is taken somewhere. – Jack Apr 8 '10 at 20:34
The best way to do it is using a regexp anyway.. – Jack Apr 8 '10 at 20:35
string.toLowerCase().startsWith(string2.toLowerCase())
share|improve this answer
I might point out this isn't a particularly helpful answer - I suggest expanding on your answers in a little more detail! – Knights who say Ni Apr 22 at 21:22

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.