Hi all,

I have a problem with regex , utf-8 chars and IGNORECASE

 >>> re.search(u'é', u'qwért', re.IGNORECASE)
<_sre.SRE_Match object at 0x2aaaaed0c100>

Here everything is ok.


 >>> re.search(u'É', u'qwért', re.IGNORECASE)

Here that doesn't work. but:
 >>> print u'é'.upper()
É

is it a bug in IGNORECASE option?

Thanks for your help
-- 
Yann
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to