I wrote the following pattern in C# to validate a FQDN received from a user:

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

I want to allow the user to enter the following FQDN:

<name>.<letter><digit>

such as "aa.a1". For "aa.a1" my regex detects the FQDN as invalid, and for "aa.1a" it detects it as valid. Does anyone know why?

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

Instead of using a RegEx, you can load the string into a Uri and use the different methods and properties to figure out if it is a FQDN.

Uri uri = new Undri(myFQDN);
string host = uri.Host;
bool isAbsolute = uri.IsAbsoluteUri;
link|improve this answer
You'll need to wrap that in a try/catch block to trap for UriFormatException's – shf301 Feb 6 '11 at 13:19
It isn't good for me, I must use on Regex. – RRR Feb 6 '11 at 13:31
@RRR - Why is that? Simply stating it's not good without explaining why is hardly going to help with finding suitable solutions. – Oded Feb 6 '11 at 13:32
1  
because when I uses in this way, for this code: " Uri uri = new Uri("aa.aa"); string host = uri.Host; bool isAbsolute = uri.IsAbsoluteUri;" I accept this exception "The format of the URI could not be determined.", furthermore , I have a spacial rules for the FQDN, can I suit the Uri object to my requirements? – RRR Feb 6 '11 at 13:48
@RRR - You can always inherit from the Uri class and create a customized version. – Oded Feb 6 '11 at 13:50
show 1 more comment
feedback

I'm not going to even try to decode that huge regex, use the Uri.IsWellFormedUriString method instead. That already does what you are looking for.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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