30
votes
What is the best regular expression for validating email addresses?
I've now collated test cases from Cal Henderson, Dave Child, Phil Haack, Doug Lovell, RFC5322 and RFC 3696. 222 test addresses in all.
I ran all these tests against all the validators I cou …
0
votes
list of email addresses that can be used to test a javascript validation script.
I've now collated test cases from Cal Henderson, Dave Child, Phil Haack, Doug Lovell and RFC 3696. 158 test addresses in all.
I ran all these tests against all the validators I could find. …
3
votes
How far should one take e-mail address validation?
Use an open-source validator which doesn't give false negatives. Zero effort for you and robust validation for your app.
I've now collated test cases from Cal Henderson, Dave Child, Phil Ha …
2
votes
Why are people using regexp for email and other complex validation?
I don't believe correct email validation can be done with a single regular expression (now there's a challenge!). One of the issues is that comments can be nested to an arbitrary depth in both the …
0
votes
What alternatives are there for PHPLint that run under Windows?
PHPLint now runs under Windows. The download page is currently here: http://www.icosaedro.it/phplint/download-windows. …
1
vote
Which characters make a url invalid?
In your supplementary question you asked if www.example.com/file[/].html is a valid URL.
That URL isn't valid because a URL is a type of URI and a valid URI must have a scheme …
