Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

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;
share|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

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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