Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to prevent white spaces in a regular expression regex validation

I am completely new to regular expressions ,and I am trying to create a regular expression in flex for a validation.

Using a regular expression, I am going to validate that the user input does NOT contain any white-space and consists of only characters and digits... starting with digit.

so far i have:

expression="[A-Za-z][A-Za-z0-9]*"

This correctly checks for user input to start with a character followed by a possible digit, but this does not check if there is white space...(in my tests if user input has a space this input will pass through validation - this is not desired) can someone tell me how I can modify this expression to ensure that user input with whitespace is flagged as invalid?

like image 804
Rees Avatar asked May 16 '10 06:05

Rees


2 Answers

You'll need to anchor the regex at the start and end of the string:

expression="^[A-Za-z][A-Za-z0-9]*$"

makes sure that not just a substring but the entire string is matched by the regex.

like image 78
Tim Pietzcker Avatar answered Oct 29 '22 14:10

Tim Pietzcker


Try "^[A-Za-z][A-Za-z0-9]*$".

like image 42
Anton Avatar answered Oct 29 '22 14:10

Anton