0

我想检查我的在线钱包是否有来自这个网站 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)
4

1 回答 1

0

您需要查找以下标签

<div id="balance">

这样做的原因是

<span> 

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

<div id="balance">

标签。

尝试下载/查找/提取 id 为“balance”的 DIV 标签,它将包含带有实际余额的 span 标签。

于 2013-03-18T22:07:57.187 回答