>
>    if stringA.lower() in stringB.lower():
>        bla bla bla
>

    from string import lower

    if lower(stringA) in lower(stringB):
         # was this what you were after?

Cheers,

Jervis
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to