vote up 1 vote down star

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

flag

30% accept rate
If this is being used to check domain rules you also need to forbid numeric characters at the start of the name. – Einstein Jan 20 '09 at 8:29
not any more - plenty of domain names start with digits these days – Alnitak Jan 20 '09 at 8:31
So, what string should match exactly? "-", "a", "a-a", "a--a", "a-a-a" – wvanbergen Jan 20 '09 at 9:41

4 Answers

vote up 4 vote down
^[a-zA-Z0-9][a-zA-Z0-9-]*[a-zA-Z0-9]$
link|flag
Damn you Jon, you beat me to it. – Unkwntech Jan 20 '09 at 7:59
This does alow a hypohen at the end. – wvanbergen Jan 20 '09 at 8:00
true,This does alow a hypohen at the end – GustlyWind Jan 20 '09 at 8:01
Indeed - I didn't see that as part of the question to start with. Fixed, but I'll delete my answer as you got it right first :) – Jon Skeet Jan 20 '09 at 8:01
Undeleted as I don't believe "A-z" is the same as "A-Za-z" – Jon Skeet Jan 20 '09 at 8:05
show 23 more comments
vote up 2 vote down

If you do not want to match mutiple dashes after eachother:

^[a-zA-Z0-9]+(-[a-zA-Z0-9]+)*$

This will match: a, a-a, aaa-a, aaa-a-aaa-a-aaa-a, etc
But not: -, -a, a-, a--a, a-a-a-, a-a--a, etc.

link|flag
Does the hyphen at the end of the middle bit need escaping? I wasn't sure. – Jon Skeet Jan 20 '09 at 8:03
A-z allows non-alpha characters (e.g. _) – Jon Skeet Jan 20 '09 at 8:05
A hyphen does not need escaping as long as it is the last character in a character set. I am not sure about the underscore however. – wvanbergen Jan 20 '09 at 8:08
Thanks for the hyphen bit - fixed. – Jon Skeet Jan 20 '09 at 8:15
vote up 3 vote down

Here is the POSIX + look-akead variant of doing it:

^[[:alnum:]](?:[[:alnum:]-](?!-$))*$

This also allows just one character as a match. It is not so readable, though. ;-)

Note that [[:alnum:]] is a shorthand predefined character class equivalent to [a-zA-Z0-9], being more efficient, but otherwise interchangeable. Not every regex flavor knows these POSIX classes, use the traditional form if you like.

Here is one that does not allow multiple consecutive hyphens, and it is shorter:

^(?:[[:alnum:]]+(?:-(?!$))?)+$

and it's non-POSIX form:

^(?:[a-zA-Z0-9]+(?:-(?!$))?)+$
link|flag
I really hope for GustlyWind's sake that he doesn't need to support single characters. That's becoming radio static :) – Jon Skeet Jan 20 '09 at 8:56
The latter variant is probably what he needs. A more readable form: ^([a-zA-Z0-9]+(-[a-zA-Z0-9]+)*$ – wvanbergen Jan 20 '09 at 9:14
Typo: ^[a-zA-Z0-9]+(-[a-zA-Z0-9]+)*$ – wvanbergen Jan 20 '09 at 9:17
@wvanbergen: Yours is good. You should put it in your own answer. – Tomalak Jan 20 '09 at 9:35
vote up 2 vote down

I would propose:

^[a-zA-Z0-9]([a-zA-Z0-9-]*[a-zA-Z0-9])?$

This also matches strings of the length 1.

link|flag
Thanks But this is not allowing Hypen in javascript.Can you chek it please – GustlyWind Jan 20 '09 at 9:22
@GustlyWind: Looks fine to me: var pattern=new RegExp("^[a-zA-Z0-9]([a-zA-Z0-9-]*[a-zA-Z0-9])?$"); document.write(pattern.test("a-b-c")); – Jon Skeet Jan 20 '09 at 9:58

Your Answer

Get an OpenID
or

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