从HTML中获取特定参数

时间:2013-03-18 20:46:19

标签: html vb.net

我想查看我的在线钱包,了解此网站的新交易情况 instawallet.org
如何获得放置0 BTC的值并将其设置为变量?

这是我的代码不起作用:

  Dim WebClient As New WebClient()
    Dim Btc As String = WebClient.DownloadString(Mywallet-generate one of your own by going to instawallet.org)
    Btc = Split(Btc, "<span class='digits' title='")(1).Split("</span>")(0).Split(">")(1)

1 个答案:

答案 0 :(得分:0)

您需要查找以下标记

<div id="balance">

原因是

<span> 

标签不包含ID属性,但包含在

<div id="balance">

标签

尝试下载/查找/提取ID为“balance”的DIV标记,其中包含带有实际余额的span标记。