使用VBA从html代码中提取数据

时间:2017-01-10 22:46:12

标签: html vba excel-vba excel

我希望使用VBA从下面的html代码中提取值“Round 38”。

<tr class="event_round"><td colspan="6">Round 38</td></tr>
<tr id="g_1_Sxbhvay8" class="odd stage-finished" style="cursor: pointer;"><td class="cell_ib icons left">

有人能给我一个提示吗?

您可以在下面找到我的代码的一部分:

    Set tRows = mTbl.getElementsByTagName("tr")
    With dictObj
        For Each tRow In tRows
            tRowID = tRow.ID
            If Not .Exists(tRowID) Then
                .add tRowID, Empty
            End If
        Next tRow
    End With

0 个答案:

没有答案