Excel VBA質問箱 IV

当質問箱は、有志のボランティア精神のおかげで成り立っています。
問題が解決したら、必ずお礼をしましょうね。
本サイトの基本方針をまとめました。こちら をご一読ください。

投稿種別の選択が必要です。ご注意ください。
迷惑投稿防止のため、URLの入力を制限しています。ご了承ください。


23189 / 76732 ←次へ | 前へ→

【58913】Re:ホームページからの抽出
発言  ichinose  - 08/11/18(火) 7:20 -

引用なし
パスワード
   おはようございます。

>やりたいこと:
> 以下のホームページから
>  レース情報(日付・天候・競走データ・払い戻し情報)
> などをすべて抽出し、エクセルに貼り付ける。
>
>http://keiba.nifty.com/cs/catalog/keiba_placing-order-past
>/result-PC/kaisai_09070102/raceNo_01/1.htm

競争データだけ

'=========================================================
Sub main2()
  On Error Resume Next
  Dim ie As Object
  Dim tbl As Object
  Dim rw As Object
  Dim cll As Object
  Dim g0 As Long, g1 As Long
  Application.ScreenUpdating = False
  Set ie = CreateObject("InternetExplorer.Application")
  With ie
    .Visible = False
    .navigate "http://keiba.nifty.com/cs/catalog/keiba_placing-order-past/result-PC/kaisai_09070102/raceNo_01/1.htm"
'    httpは、直してください
    Do While .Busy = True Or .readyState <> 4
     Loop
    For Each tbl In .document.body.all.tags("Table")
     If tbl.className = "umaList" Then
       For Each rw In tbl.Rows
        g1 = 0
        For Each cll In rw.Cells
          Cells(g0 + 1, g1 + 1).Value = Replace(cll.innertext, vbCr, "")
          g1 = g1 + 1
          Next
        g0 = g0 + 1
        Next
       End If
     Next
    .Quit
    End With
  Set tbl = Nothing
  Set ie = Nothing
  Set rw = Nothing
  Set cll = Nothing
  Application.ScreenUpdating = True
End Sub


尚、
'====================================
Sub main()
  On Error Resume Next
  Dim ie As Object
  Dim ele As Object
  Dim g0 As Long
  Set ie = CreateObject("InternetExplorer.Application")
  With ie
    .Visible = True
    .navigate "http://keiba.nifty.com/cs/catalog/keiba_placing-order-past/result-PC/kaisai_09070102/raceNo_01/1.htm"

    Do While .Busy = True Or .readyState <> 4
     Loop
    For Each ele In .document.body.all
     Cells(g0 + 1, 1).Value = TypeName(ele)
     Cells(g0 + 1, 2).Value = ele.innertext
     Cells(g0 + 1, 3).Value = ele.tagName
     Cells(g0 + 1, 4).Value = ele.className
     g0 = g0 + 1
     Next
   
    .Quit
    End With
  Set ele = Nothing
  Set ie = Nothing
End Sub

こんなコードでElementの内容を調べると、他の部分も取得できそうですよ

上記の最初の競争データ取得もIHTMLElementCollectionを調べて取得しました。

0 hits

【58907】ホームページからの抽出 馬データ 08/11/17(月) 18:55 質問
【58909】Re:ホームページからの抽出 ゆみこん 08/11/17(月) 23:21 発言
【58910】Re:ホームページからの抽出 かみちゃん 08/11/17(月) 23:33 発言
【58913】Re:ホームページからの抽出 ichinose 08/11/18(火) 7:20 発言
【58953】Re:ホームページからの抽出 馬データ 08/11/19(水) 21:15 お礼

23189 / 76732 ←次へ | 前へ→
ページ:  ┃  記事番号:
2610219
(SS)C-BOARD v3.8 is Free