我希望使用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