在vb.net正則表達式2010正則表達式(正則表達式)在vb.net
我想提取的字體標籤之間的數量從一個網站在我的vb.net形式
<html>
....
When asked enter the code: <font color=blue>24006 </font>
....
</html>
數量是自動生成
我使用:
Dim str As String = New WebClient().DownloadString(("http://www.example.com"))
Dim pattern = "When asked enter the code: <font color=blue>\d{5,}\s</font>"
Dim r = New Regex(pattern, RegexOptions.IgnoreCase)
Dim m As Match = r.Match(str)
If m.Success Then
Label1.Text = "Code" + m.Groups(1).ToString()
m = m.NextMatch()
Else
Debug.Print("Failed")
End If
,但得到的輸出:
代碼
===========================
感謝
對不起,我的英文不好..