/ Published in: Regular Expression
Expand |
Embed | Plain Text
function is_valid_email (email) { return /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/.test(email); }
You need to login to post a comment.
beforebeta on 03/10/08
7 people have marked this snippet as a favorite
chrisaiv
mikegreen
egoens
dmitryfstyleca
tomasdev
vestimir
configuration
function is_valid_email (email) { return /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/.test(email); }
You need to login to post a comment.