I had a requirement where in the text field the first character should be a alpha numeric and then i can allow a hyphen from thereafter in JavaScript.Also hyphen should not be allowed at the end
|
|
|||||||
|
|
|
|
||||||||||
|
|
|
If you do not want to match mutiple dashes after eachother: ^[a-zA-Z0-9]+(-[a-zA-Z0-9]+)*$ This will match: |
||||||||
|
|
|
Here is the POSIX + look-akead variant of doing it:
This also allows just one character as a match. It is not so readable, though. ;-) Note that Here is one that does not allow multiple consecutive hyphens, and it is shorter:
and it's non-POSIX form:
|
||||||||
|
|
|
I would propose:
This also matches strings of the length 1. |
||||
|
