jrlaughlin
07-15-2003, 09:45 AM
Hello all,
Hoping there is a regular expression guru out there...I don't do it enough to be good at it.
I need a regular expression that will match the following conditions.
<li>at least 8 characters long
<li>not longer than 15 characters
<li>must contain at least one number
<li>can contain only numeric and alpha (upper and/or lower) characters
<li>must start with an upper or lowercase alpha character
Here is what I have been working with.
^[a-zA-Z]+[a-zA-Z0-9]{7,14}$
Doesn't work quite right...not sure what I'm doing wrong.
Any help will be appreciated.
Hoping there is a regular expression guru out there...I don't do it enough to be good at it.
I need a regular expression that will match the following conditions.
<li>at least 8 characters long
<li>not longer than 15 characters
<li>must contain at least one number
<li>can contain only numeric and alpha (upper and/or lower) characters
<li>must start with an upper or lowercase alpha character
Here is what I have been working with.
^[a-zA-Z]+[a-zA-Z0-9]{7,14}$
Doesn't work quite right...not sure what I'm doing wrong.
Any help will be appreciated.