Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need a regular expression to validate whether text entered in an asp.net textbox has the following format

A-za-z123456789  /s = /s  A-za-z123456789

Regular expression explained:

  • one or more alphanumeric characters
  • followed by any number of spaces
  • an equal sign
  • followed by any number of spaces
  • one or more alphanumeric characters
share|improve this question
2  
You've done most of the work already; what are you having trouble with? – acheong87 Jan 30 at 16:01
I cant get it to work, thats why im here asking for help. – xerxes Jan 30 at 16:03
Can there be no alphanumeric chars and/or spaces and just a =? Is 0 valid? – MikeM Jan 30 at 16:05
no, there can be 0 spaces but there has to be alphanumeric chars on both sides of an equal sign. – xerxes Jan 30 at 16:06
Can zero be one of the alphanums? – MikeM Jan 30 at 16:09

2 Answers

up vote 2 down vote accepted

If zero valid

"^[a-zA-Z\\d]+\\s*=\\s*[a-zA-Z\\d]+$"

If zero not valid

"^[a-zA-Z1-9]+\\s*=\\s*[a-zA-Z1-9]+$"
share|improve this answer
[a-zA-Z0-9]*\s*\=\s*[a-zA-Z0-9]*

Replace * with + if you want one or more rather than "any" (which includes zero)

Considering your answer to the comment about requiring one or more alphanumeric characters each side:

[a-zA-Z0-9]+\s*\=\s*[a-zA-Z0-9]+

This version will only match if there is at least one alphanumeric character each side of the "=".

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.