この行が検出した最初の 7 文字を表示しないようにするにはどうすればよいですか?
For Each u9 As HtmlElement In WebBrowser3.Document.GetElementsByTagName("div")
If Not Object.ReferenceEquals(u9.GetAttribute("className"), Nothing) AndAlso u9.GetAttribute("className").Equals("duration_data") Then
TextBox12.Text = u9.InnerText
Exit For
End If
Next
私はそれが入ると思っていますTextBox12.Text = u9.InnerText
が、どのようなコードかはわかりません。