使用Visual Studio搜索并显示一段源代码

时间:2013-12-08 01:29:49

标签: .net vb.net visual-studio-2013

首先,我想指出我是Visual Studio的新手,并为自己设置了一个为我玩的游戏构建自定义网络浏览器的项目。

我的自定义浏览器是否有办法搜索网站的源代码并显示其中的一部分?

实施例。搜索“hpcurrent = 15”并显示“15”

我很抱歉,如果这是基本的,但我对VS很新。

提前致谢。

1 个答案:

答案 0 :(得分:1)

我不经常使用VB(我发现C#更容易使用),但是这样的东西应该可以工作(未经测试):

Dim Input As String = New WebClient().DownloadString("http://example.com")
Dim Match As Match = Regex.Match(Input, "hpcurrent=(\d+)")
If Match.Success Then
    MessageBox.Show(Match.Groups(1).Value)
End If