Re: Regular expressions for accents like ó character in python

2008-06-18 Thread Gabriel Genellina
En Thu, 19 Jun 2008 02:08:38 -0300, Sallu <[EMAIL PROTECTED]> escribió: i want to restrict to user to not enter accents character. si i need to make an Regular expressions for accents like ó character You may enumerate all the allowed characters: py> allowed_re = re.compile(r"^[A-Za-z0-9 ]*

Regular expressions for accents like ó character in python

2008-06-18 Thread Sallu
i want to restrict to user to not enter accents character. si i need to make an Regular expressions for accents like ó character -- http://mail.python.org/mailman/listinfo/python-list