0
要件:テキスト「ロスレス」を抽出します。HtmlAgilityを使用してスパン内のテキストを抽出する
<td nowrap="nowrap" align="center">
<span class="gen">4:59<br /><span style="color: red">Lossless</span></span>
</td>
私は全体のテキストを抽出できますことによってそれから "4 59Losslessを":
Dim divnodes As HtmlNode = doc.DocumentNode.SelectSingleNode("//td[@nowrap='nowrap']//span[@class='gen']")
If Not divnodes Is Nothing Then
MsgBox(div.InnerText)
End If
私も
Msgbox(div.Attributes("style").Value)
が、仕事なしを試してみました。
私にお答えできますか?
を追加することによって、それを解決した(HTTPS:/ /docs.microsoft.com/en-us/dotnet/visual-basic/programming-guide/program-structure/coding-conventions)を参照してください。 –
@AndrewMortonさん、有益なリンクをありがとうございます。うん。彼らは "Not ... Is"の代わりに "IsNot"を使うことを提案しています。回答が更新されました! –