0

我想在 VB 中使用 webbrowser 以某种方式从这个 HTML 代码中获取文本: 00 :15:

<div id="stop15" class="sec">

<div class="sec">00:15</div>

</div>

我试过了 :

Dim elements As HtmlElementCollection = WebBrowser1.Document.GetElementsByTagName("div")

For Each he As HtmlElement In elements

If he.OuterHtml.ToUpper.Contains("sec") Then

CheckedListBox1.Items.Add(he.GetAttribute("class"))
                      'or he.InnerText()

End If

Next

,但它不起作用。谢谢你的帮助。

4

1 回答 1

0
  1. 以可变字符串加载页面
  2. 使用正则表达式查看<div class="sec">.+</div>
  3. 提取你的文字
于 2013-08-13T18:55:14.127 回答