Private Sub ListLinks()
Dim Driver As New ChromeDriver
Driver.Get "https://en.wikipedia.org/wiki/Main_Page"
Dim links As List
Set links = Driver.FindElementsByTag("a").Attribute("href")
Debug.Print links.Count
links.Distinct
links.Sort '昇順のみ
Debug.Print links.Item(276) 'メモリ上重複データが残っている。⇒Distinct後は、個別アイテムの操作はしない方が良い。
links.ToExcel
Debug.Print links.Count
Driver.Quit
End Sub
Use_ListAdd
Private Sub Use_ListAdd()
Dim List As New List
List.Add "hoge"
Debug.Print List.Last
Debug.Print List.Count
List.Insert 1, "age"
List.RemoveAt 1
List.Set 1, "sage"
Debug.Print List.First
Debug.Print List.Count
Debug.Print List.Get(1)
Debug.Print List.Item(1)
End Sub
Use_ListValues
Private Sub Use_ListValues()
Dim Driver As New ChromeDriver
Driver.Get "https://en.wikipedia.org/wiki/Main_Page"
Dim links As List
Set links = Driver.FindElementsByTag("a").Attribute("href")
links.Distinct
Dim target(): target() = links.Values 'Targetへ重複削除後のデータ数が代入された
Debug.Print UBound(target)
Dim buf
For Each buf In target
Debug.Print buf
Next buf
Driver.Quit
End Sub
Distinct_Test
Private Sub Distinct_Test()
Dim List As New List
List.Add "sage"
List.Add "sage"
Debug.Print List.Item(1)
Debug.Print List.Item(2)
List.Distinct
Debug.Print List.Count 'Countでは、1を返す(重複削除されている)
List.ToExcel 'Excel出力は1アイテムで返す
Debug.Print List.Item(1)
Debug.Print List.Item(2) 'Distinct後も値が出力される
Set List = Nothing
Debug.Print List.Contains("sage") '常にFalseを返す
End Sub