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
If zero valid
If zero not valid