Tagged Questions

51
votes
32answers
7k views

What is the best regular expression for validating email addresses?

Over the years I have slowly developed a regular expression that validates MOST email addresses correctly, assuming they don't use an IP address as the server part. Currently the expression is: …
25
votes
14answers
2k views

What’s the best way to implement field validation using ASP.NET MVC?

I am building a public website using ASP.NET, as part of the deliverable I need to do an Admin Site for data entry of the stuff shown in the public site, I was wondering what techniques or procedures …
24
votes
22answers
2k views

How far should one take e-mail address validation?

I'm wondering how far people should take the validation of e-mail address. My field is primarily web-development, but this applies anywhere. I've seen a few approaches: simply checking if there is …
18
votes
32answers
1k views

Do you validate your websites?

I recently read a great resource by the Opera developers, entitled, "Introduction to The Web Standards Curriculum". I thought the articles put forth some good reasons why you should look at validating …
16
votes
18answers
538 views

How do you approach intermittent bugs?

Scenario You've got several bug reports all showing the same problem. They're all cryptic with similar tales of how the problem occurred. You follow the steps but it doesn't reliably reproduce the …
15
votes
9answers
631 views

Google homepage not valid html

I was looking at the www.google.com in Firebug and noticed something odd...the Google logo is centered using a center tag. So I went and checked the page with the W3C validator and it found 48 …
15
votes
18answers
10k views

A comprehensive regex for phone number validation

I'm trying to put together a comprehensive regex to validate phone numbers. Ideally it would handle international formats, but it must handle US formats, including the following: 1-234-567-8901 …
14
votes
10answers
3k views

XKCD sql injection - please explain

Hi, Just looking at: What does the sql code do: Robert'); DROP TABLE STUDENTS; -- I know both ' and -- are for comments, but doesn't the word DROP get commented also since it is part of the …
14
votes
8answers
1k views

What is the best way to validate a credit card in PHP?

Given a credit card number and no additional information, what is the best way in PHP to determine whether or not it is a valid number? Right now I need something that will work with American …
12
votes
6answers
330 views

i18n Validations

Think Global, Act Local That's what they tell you, however during all my time as I developer I've always seen big companies like Google, Microsoft, Oracle and so do validations in a localized …
12
votes
8answers
1k views

Is there a difference between ‘valid xml’ and ‘well formed xml’?

I wasnt aware of a difference, but a coworker says there is, although he can't back it up. What's the difference if any?
12
votes
8answers
2k views

What’s the best way to validate an XML file against an XSD file?

I'm generating xml files that need to conform to an xsd that was given to me. What's the best way to do this?
11
votes
4answers
277 views

Should the MVVM ViewModel perform type conversion/validation?

Hi We're just getting into MVVM in WPF. We have implemented our ViewModels with 'strongly typed' properties (int, double? etc.) that we bind to in the view. Type conversion works OK, mostly, and so …
11
votes
2answers
422 views

How mature is the Microsoft Code Contracts framework?

Microsoft has recently put a release of their Code Contracts framework on DevLabs with a commercial license. We're interested on using them in our project (mostly C#, some C++/CLI) to gradually …
11
votes
12answers
1k views

Why are people using regexp for email and other complex validation?

There are a number of email regexp questions popping up here, and I'm honestly baffled why people are using these insanely obtuse matching expressions rather than a very simple parser that splits the …

1 2 3 4 5 107 next
15 30 50 per page