Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例えば:
http://www.google.co.uk www.google.co.uk google.co.uk
すべてが次のように変換されます:
google.co.uk
System.Uri クラスを使用したかったのですが、これはスキームを持つ URL のみを受け入れるようです。
このコードで試してください
var url = ""; if (! url.Contains("://")) { Url = "http://" + url; } var result = new Uri(url).Host;