Can I get just a simple computer name (without the domain name) from a fully qualified name (can be with or without a domain name)? Is it possible for a computer name to have a dot (.) sign in it?

(this question seems to be doing the reverse)

link|improve this question

77% accept rate
feedback

2 Answers

up vote 2 down vote accepted

No hostnames cannot contain a dot (reference Wikipedia and RFC 952 (see "ASSUMPTIONS") and RFC 1123). It is the delimiter between the hostname and the domainname. So you can simply do

string fullName = "foobar.domain";
string hostName = fullName.Substring(0, fullName.IndexOf('.'));

(With proper error checking of course, for the case that "fullName" is not actually a fullname).

link|improve this answer
Do you have any authoritative source that no hostnames can contain a dot? – Louis Rhys Feb 26 at 16:32
@LouisRhys see updates. – Christian.K Feb 27 at 4:41
right. Thanks a lot! – Louis Rhys Feb 27 at 7:42
feedback

Out of a fqdn:

string s = "some.computer.name";
string host = s.Substring(0, s.IndexOf('.'));

Out of the framework:

System.Net.Dns.GetHostName();
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.