次のコードがあります。
'get the items from listbox4
For Each aa As String In ListBox4.Items
'convert string to uri and grap the hostname for each item in listbox4
Dim myuri As New Uri(aa)
Dim baseUri As String = myuri.GetLeftPart(UriPartial.Authority)
' check if the hostname exist on items of listbox2 and skip the duplicate
If ListBox2.Items.Contains(baseUri) Then
Return
Else
ListBox2.Items.Add(aa)
End If
Next
最初の ListBox のデータに基づいて、2 番目の ListBox に個別の値を含めるにはどうすればよいですか?