Does anyone have a Regular Expression to validate legal FQDN?

Now, I use on this regex:

"(?=^.{1,254}$)(^(?:(?!\d+.|-)[a-zA-Z0-9_-]{1,63}(?!-).?)+(?:[a-zA-Z]{2,})$)"

but it detect "aa.a" as invalid FQDN, and "aa.aa" as valid, does anyone know why?

Thanks

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

Here's a shorter pattern:

(?=^.{1,254}$)(^(?:(?!\d+\.)[a-zA-Z0-9_\-]{1,63}\.?)+(?:[a-zA-Z]{2,})$)

As for why the pattern determines "aa.a" as invalid and "aa.aa" as valid, it's because of the {2,} - if you change the 2 to a 1 so that it's

(?=^.{1,254}$)(^(?:(?!\d+\.)[a-zA-Z0-9_\-]{1,63}\.?)+(?:[a-zA-Z]{1,})$)

it should deem both "aa.a" and "aa.aa" as valid.

string pattern = @"(?=^.{1,254}$)(^(?:(?!\d+\.)[a-zA-Z0-9_\-]{1,63}\.?)+(?:[a-zA-Z]{1,})$)";
bool isMatch = Regex.IsMatch("aa.a", pattern);

isMatch is TRUE for me.

link|improve this answer
I do that but it's not work, again it determines "aa.a" as invalid and "aa.aa" as valid. can you explain me what the meaning of "{1,}" instead "{2,}"? – RRR Feb 6 '11 at 9:59
Using the pattern with {1.} "aa.a" validates for me. Curly braces specify a specific amount of repetition so {1,} requires at least 1 repetition and {2,} requires at least 2. – bitxwise Feb 6 '11 at 10:07
sorry, now I see that probably I have additional problem, becuase when I run this pattern in new program its works well.Thanks – RRR Feb 6 '11 at 10:12
Additional question, what are the diffrents between the pattern that you suggest me to the pattern that I use? – RRR Feb 6 '11 at 10:17
Only difference is that yours has (?!-).?) for the last dot and the one I posted has \.?). The ?! in yours is using a negative lookahead assertion ("match something not followed by something else"). – bitxwise Feb 6 '11 at 10:27
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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