vote up 3 vote down star

What is the nicest way of replacing the host-part of an Uri using .NET?

I.e.:

string ReplaceHost(string original, string newHostName);
//...
string s = ReplaceHost("http://oldhostname/index.html", "newhostname");
Assert.AreEqual("http://newhostname/index.html", s);
//...
string s = ReplaceHost("http://user:pass@oldhostname/index.html", "newhostname");
Assert.AreEqual("http://user:pass@newhostname/index.html", s);
//...
string s = ReplaceHost("ftp://user:pass@oldhostname", "newhostname");
Assert.AreEqual("ftp://user:pass@newhostname", s);
//etc.

System.Uri does not seem to help much.

flag

58% accept rate

1 Answer

vote up 9 vote down check

System.UriBuilder is what you are after...

link|flag
Thanks that was exactly what I was looking for. – Rasmus Faber Jan 26 at 13:42
I would have recommended the Uri class, but I would have been wrong. Good answer. – Jonathan C Dickinson Jan 26 at 14:43

Your Answer

Get an OpenID
or

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