私はこのようなファイルurl.dataにURLのリストを持っています
http://site1.org/info.php
http://site2.com/info/index.php
http://site3.edu/
リンク関数を使用して文字列の配列をロードします
string[] asUrlData = File.ReadAllLines("url.data").Where(s => !string.IsNullOrEmpty(s))
.Distinct().
.ToArray();
Urisの左側の部分を次のように配列に入れたい
http://site1.org/
http://site2.com/info/
http://site3.edu/
LINQを使用してこれを行う方法はありますか?