vote up 3 vote down star

What's the best way to do case insensitive string comparison in Python?

I would like to encapsulate comparison of a regular strings to a repository string using in a very simple and pythonic way. I also would like to have ability to look up values in a dict hashed by strings using regular python strings. Much obliged for advice.

flag

73% accept rate
This is a duplicate of stackoverflow.com/questions/62567/… – ΤΖΩΤΖΙΟΥ Nov 26 '08 at 2:18
Since the assumptions in that question are wrong and the answers are rather unpythonic, i would let this question stand on its own. – hop Nov 26 '08 at 11:40
I let it be too, didn't I?-) – ΤΖΩΤΖΙΟΥ Nov 26 '08 at 20:35

8 Answers

vote up 0 vote down

What about the performance of the str.lower method? I am running a batch process against a small database (500 MB of text) and using this method for case-insensitive comparison is taking about 3 times as along as the case-sensitive comparison did.

In C there are functions for doing case-insensitive comparison which do not need to alter the strings, such as stricmp. Is there no equivalent for Python?

link|flag
1  
if you have a question, ask question. this is not a forum, please, delete this non-answer. – SilentGhost Sep 6 at 18:26
vote up 0 vote down
def insenStringCompare(s1, s2):
    """ Method that takes two strings and returns True or False, based
        on if they are equal, regardless of case."""
    try:
        return s1.lower() == s2.lower()
    except AttributeError:
        print "Please only pass strings into this method."
        print "You passed a %s and %s" % (s1.__class__, s2.__class__)
link|flag
vote up 4 vote down

Please see Ignore case in Python strings

link|flag
vote up -2 vote down

You could subclass the builtin "str" if you need to compare a lot and dont want to clutter your code all over with .lower()

class ci_str(str):
    def __eq__(self, other):
        return self.lower() == other.lower()

a = ci_str("Hello World")
b = ci_str("hello world")
c = ci_str("foo bar")
print a == b
print b == c

>>> 
True
False
link|flag
complex solution to a simple problem – orip Nov 26 '08 at 22:09
vote up -2 vote down
lower(string1) == lower(string2)
lower(string1) <  lower(string2)
lower(string1) >  lower(string2)
link|flag
1  
You might want to mention that you need to import lower() from string for this to work. Also note that lower() is no longer available in Python 3. – Matthew Trevor Nov 26 '08 at 1:33
vote up 2 vote down

How about converting to lowercase first? you can use string.lower().

link|flag
vote up 0 vote down

The usual approach is to uppercase the strings or lower case them for the lookups and comparisons. For example:

>>> "hello".upper() == "HELLO".upper()
True
>>>
link|flag
vote up 12 vote down
string1 = 'Hello'
string2 = 'hello'

if string1.lower() == string2.lower():
    print "The strings are the same (case insensitive)"
else:
    print "The strings are not the same (case insensitive)"
link|flag
I believe you have a typo: should be string1.lower() – Soldarnal Nov 26 '08 at 1:43

Your Answer

Get an OpenID
or

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