- Author:
- flavio87
- Posted:
- September 29, 2008
- Language:
- Python
- Version:
- 1.0
- Score:
- 2 (after 2 ratings)
This very basic function I was missing in this part of the Django Documentation when creating a custom MultiEmailField: http://docs.djangoproject.com/en/dev/ref/forms/validation/
1 2 3 4 5 6 | # better solution proposed by KpoH:
from django.forms.fields import email_re
def is_valid_email(email):
return True if email_re.match(email) else False
|
More like this
- Browser-native date input field by kytta 4 weeks, 1 day ago
- Generate and render HTML Table by LLyaudet 1 month, 1 week ago
- My firs Snippets by GutemaG 1 month, 1 week ago
- FileField having auto upload_to path by junaidmgithub 2 months, 2 weeks ago
- LazyPrimaryKeyRelatedField by LLyaudet 2 months, 3 weeks ago
Comments
better solution
#
even better :)
or
#
hey there thanks.
can you please repost that in a new snippet?
just realized my code is not even working properly.
sorry about that
#
nevermind about reposting, i just put in your code
#
This is cleaner:
but a function is redundant, instead of calling it each time, one can simply do:
#
Just a note for those on Django 1.1.1 or higher having trouble getting this to work...
The location of the regular expression has moved to:
#
Please login first before commenting.