9951 explained code solutions for 126 technologies


regexValidate email address


/^[^\s@]+@[^\s@]+\.[^\s@]+$/ctrl + c
/^

begin from the start of the string

[^\s@]+

match everything escept whitespaces and @ symbol (suggested here)

$/

finish when string ends