所以我试图找到一个HTML元素,即:
<a class="signout" href="https://www.dreamstime.com/logout.php">Sign out</a>
我的代码是:
Dim thepage As String = postreqreader.ReadToEnd
If thepage.Contains("<a href="https: //www.dreamstime.com/logout.php" class="signout">Sign out</a>") Then
good += 1
Label2.Text = "Good: " & good.ToString
If pencil = False Then
TextBox1.Text += currentaccount & vbNewLine
Me.Refresh()
End If
,但每次都会发生此错误: OPEN ME
我尝试删除空格,但一直出现错误提示 逗号,“)”,或期望有效的表达式继续。
答案 0 :(得分:1)
您没有正确转义引号。 “ A” = A,“” =,“”“” =“
或者让我们使用*,以便于查看, *“ **,首先*为开始,然后为”,然后是您的字符,然后是另一个*,以便知道字符结尾,并且*为字符串结尾。
以更长的字符串显示,如下所示:
"some string ""is"" here"
结果是:
some string "is" here