Validation is used to check data to make sure it fits whatever required specifications are set for it.

learn more… | top users | synonyms (3)

796
votes
43answers
225k views

Using a regular expression to validate an email address

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: ...
480
votes
25answers
265k views

Validate email address in Javascript?

How can an email address be validated in Javascript? Though this solution may be simple, I'm sure this is one of those useful things that people will be Googling for and deserves its own entry on the ...
335
votes
11answers
26k views

How does the SQL injection from the “Bobby Tables” XKCD comic work?

Just looking at: (Source: http://xkcd.com/327/) What does this SQL do: Robert'); DROP TABLE STUDENTS; -- I know both ' and -- are for comments, but doesn't the word DROP get commented as well ...
233
votes
32answers
198k 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 ...
119
votes
5answers
44k views

How do I remove javascript validation from my eclipse project?

I am using eclipse on my project and while messing around with my eclipse settings, I turned on Javascript support. Now eclipse complains that JQuery library has errors in it and is not letting me ...
108
votes
15answers
93k views

XML Schema (XSD) validation tool? [closed]

At the office we are currently writing an application that will generate XML files against a schema that we were given. We have the schema in an .XSD file. Are there tool or libraries that we can ...
107
votes
10answers
180k views

Check if inputs are empty using jQuery

I have a form that I would like all fields to be filled in. If a field is clicked into and then not filled out, I would like to display a red background. Here is my code: $('#apply-form ...
95
votes
23answers
122k views

jQuery: what is the best way to restrict “number”-only input for textboxes? (allow decimal points)

What is the best way to restrict "number"-only input for textboxes? I am looking for something that allows decimal points. I see a lot of examples. But have yet to decide which one to use.
93
votes
6answers
41k views

Is there a (built-in) way in JavaScript to check if a string is a valid number?

I'm hoping there's something in the same conceptual space as the old VB6 IsNumeric() function?
89
votes
7answers
88k views

JQuery validate: How to add a rule for regular expression validation?

I am new to JQuery and am using the JQuery validation plugin. Great stuff! I want to migrate my existing ASP.NET solution to use JQuery instead of the ASP.NET validators. I am missing a replacement ...
87
votes
9answers
62k views

Which characters make a URL invalid?

I am writing BBCode for my own forum (based on PHP). How do you find out if it is an invalid URL provided in the the [url] tag? Which characters make a URL invalid? To extend my main question, are ...
82
votes
9answers
41k views

Cross field validation with Hibernate Validator (JSR 303)

Is there an implementation of (or third-party implementation for) cross field validation in Hibernate Validator 4.x? If not, what is the cleanest way to implement a cross field validator? As an ...
79
votes
5answers
24k views

Disable validation of HTML5 form elements

In my forms, I'd like to use the new HTML5 form types, for example <input type="url" /> (more info about the types here). The problem is that Chrome wants to be super helpful and validate these ...
64
votes
10answers
46k 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?
64
votes
8answers
33k views

jQuery Validate - require at least one field in a group to be filled

I'm using the excellent jQuery Validate Plugin to validate some forms. On one form, I need to ensure that the user fills in at least one of a group of fields. I think I've got a pretty good solution, ...
63
votes
7answers
57k views

WPF Data Binding and Validation Rules Best Practices

I have a very simple WPF application in which I am using data binding to allow editing of some custom CLR objects. I am now wanting to put some input validation in when the user clicks save. However, ...
62
votes
15answers
76k views

PHP validation/regex for URL

I've been looking for a simple regex for URL's, does anybody have one handy that works well? I didn't find one with the zend framework validation classes and have seen several implementations. ...
61
votes
2answers
29k views

rails 3 validation on uniqueness on multiple attributes

I use Rails 3.0.0.beta4 I want to add a validation on uniqueness on two attributes, that means that my model is valid if the couple of 'recorded_at' and 'zipcode' is unique. On one attribute here is ...
61
votes
11answers
41k views

In C# check that filename is *possibly* valid (not that it exists)

Is there a method in the System.IO namespace that checks the validity of a filename? Example: 'C:\foo\bar' would validate ':"~-*' would not a little trickier: 'X:\foo\bar' would validate is there is ...
60
votes
4answers
86k views

jQuery regex validation of e-mail address

I'm not too sure about how to do this. I need/want to validate email addresses by regex using something like this: ...
59
votes
3answers
24k views

How do I get the collection of Model State Errors in ASP.NET MVC?

How do I get the collection of errors in a view? I don't want to use the Html Helper Validation Summary or Validation Message. Instead I want to check for errors and if any display them in specific ...
57
votes
11answers
26k views

What's the state of the art in email validation for Rails?

What are you using to validate users' email addresses, and why? I had been using validates_email_veracity_of which actually queries the MX servers. But that is full of fail for various reasons, ...
56
votes
3answers
46k views

jQuery Validation plugin: disable validation for specified submit buttons

I have a form with multiple fields that I'm validating (some with methods added for custom validation) with Jörn Zaeffere's excellent jQuery Validation plugin. How do you circumvent validation with ...
55
votes
6answers
39k views

Is div inside list allowed?

I know that DIV inside LI isn't allowed, but I've seen it lately on many "big" websites like: Smashing Magazine, Web Designer Wall... etc. I try to validate sites, and they have errors, but nothing ...
54
votes
8answers
25k views

C# Sanitize File Name

I recently have been moving a bunch of MP3s from various locations into a repository. I had been constructing the new file names using the ID3 tags (thanks, TagLib-Sharp!), and I noticed that I was ...
54
votes
9answers
24k views

Detecting WPF Validation Errors

In WPF you can setup validation based on errors thrown in your Data Layer during Data Binding using the ExceptionValidationRule or DataErrorValidationRule. Suppose you had a bunch of controls set up ...
53
votes
9answers
3k 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 errors. ...
52
votes
8answers
28k views

How to validate IP address in Python?

What's the best way to validate that an IP entered by the user is valid? It comes in as a string.
51
votes
9answers
46k views

Easy way to test a URL for 404 in PHP?

I'm teaching myself some basic scraping and I've found that sometimes the URL's that I feed into my code return 404, which gums up all the rest of my code. So I need a test at the top of the code to ...
49
votes
6answers
12k views

Rails 3: “field-with-errors” wrapper changes the page appearance. How to avoid this?

Email field: <label for="job_client_email">Email: </label> <input type="email" name="job[client_email]" id="job_client_email"> looks like this: But, if the email validation ...
48
votes
7answers
110k views

Validation of radio button group using jQuery validation plugin

How to perform validation for a radio button group (one radio button should be selected) using jQuery validation plugin?
47
votes
4answers
9k views

What's an appropriate HTTP status code to return by a REST API service for a validation failure?

I'm currently returning 401 Unauthorized whenever I encounter a validation failure in my Django/Piston based REST API application. Having had a look at the HTTP Status Code Registry I'm not convinced ...
46
votes
8answers
25k views

JavaScript: client-side vs. server-side validation

Which is better to do client side or server side validation? In our situation we are using jQuery and MVC. JSON data to pass between our View and Controller. A lot of the validation I do is ...
46
votes
13answers
22k views

How to use Twitter Bootstrap popovers for jQuery validation notifications?

I can make popovers appear using bootstrap easily enough, and I can also do validations using the standard jQuery validation plugin or the jQuery validation engine, but I can't figure out how to feed ...
46
votes
7answers
34k views

How do I validate a date in rails?

I want to be able to validate a date in my model in ruby on rails. However, the day, month and year values are already converted into an incorrect date by the time they reach my model. For example, ...
44
votes
12answers
51k views

What is the best Java email address validation method?

What are the good email address validation libraries for Java? Are there any alternatives to commons validator?
44
votes
2answers
48k views

What is ModelState.IsValid valid for in ASP.NET MVC in NerdDinner?

On the NerdDinner example of Professional ASP.NET MVC 1.0 there's a method to create a new dinner as copied bellow (page 89 of the free NerdDinner version). There it checks ModelState.IsValid for ...
43
votes
11answers
65k views

Email validation using jQuery

I'm new to jQuery and was wondering how to use it to validate email addresses.
42
votes
8answers
80k views

Custom date format with jQuery validation plugin

How can I specify a custom date formate to be validated with the Validation Plugin for jQuery?
42
votes
5answers
22k views

Validating with an XML schema in Python

Bounty: This is a 2 year old question. Is there a XSD validator for Python now? I have an XML file and an XML schema in another file and I'd like to validate that my XML file adheres to the ...
42
votes
16answers
4k 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 ...
40
votes
8answers
61k views

C# How can I check if a URL exists/is valid?

I am making a simple program in visual c# 2005 that looks up a stock symbol on Yahoo! Finance, downloads the historical data, and then plots the price history for the specified ticker symbol. I know ...
39
votes
9answers
8k views

Unit tests on MVC validation

How can I test that my controller action is putting the correct errors in the ModelState when validating an entity, when I'm using DataAnnotation validation in MVC 2 Preview 1? Some code to ...
39
votes
8answers
14k 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 ...
39
votes
4answers
17k views

maxlength attribute of a text box from the DataAnnotations StringLength in Asp.Net MVC

I am working on an MVC2 application and want to set the maxlength attributes of the text inputs. I have already defined the stringlength attribute on the Model object using data annotations and it is ...
38
votes
6answers
10k views

accepts_nested_attributes_for child association validation failing

I'm using accepts_nested_attributes_for in one of my Rails models, and I want to save the children after creating the parent. The form works perfectly, but the validation is failing. For simplicity's ...
37
votes
9answers
65k views

Validating parameters to a bash script

I'm a total newbie to doing any bash scripting, but I came up with a basic one to help automate the process of removing a number of folders as they become unneeded. #!/bin/bash rm -rf ...
37
votes
1answer
13k views

Perform client side validation for custom attribute

I have created a Custom Validation Attribute: public class FutureDateAttribute : ValidationAttribute { public override bool IsValid(object value) { if (value == ...
37
votes
1answer
16k views

ASP.NET MVC 3 client-side validation with parameters

Following on from this post Perform client side validation for custom attribute I am trying to get my head around how to do this, passing additional parameters to the client-side script As I ...
36
votes
19answers
30k views

How should I validate an e-mail address on Android?

What's a good technique for validating an e-mail address (e.g. from a user input field) in Android? org.apache.commons.validator.routines.EmailValidator doesn't seem to be available. Are there any ...

1 2 3 4 5 343