Johny a écrit : > Is there a good way how to use string.find function to find a > substring if I need to you case insensitive substring?
"abCdZEd".lower().find("BcD".lower()) -- http://mail.python.org/mailman/listinfo/python-list
Johny a écrit : > Is there a good way how to use string.find function to find a > substring if I need to you case insensitive substring?
"abCdZEd".lower().find("BcD".lower()) -- http://mail.python.org/mailman/listinfo/python-list