Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

email regex

#found on stackoverflow
([a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+.[a-zA-Z0-9-.]+)
#to put all mails in a list from a string that refers to an html text code 
emails = re.findall("([a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+.[a-zA-Z0-9-.]+)", html_text)
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #email #regex
ADD COMMENT
Topic
Name
6+4 =