0

这是我的代码:

HttpClient client = new HttpClient();
HttpResponseMessage response = await client.GetAsync("http://vk.com/video219171498_166049761");
string Vk_video_resText = await response.Content.ReadAsStringAsync();
txt.Text = "" + Vk_video_resText + "";

我该怎么拿

http:\\\/\\\/cs513404v4.vk.me\\\/u3692175\\\/videos\\\/b113808aad.360.mp4\

从 HTML 页面?

4

1 回答 1

0

如果我理解正确,您要做的就是去掉所有 HTML 标签,这样您就只剩下文本了。

比 htmlagilitypack 更轻量级的解决方案是文章Quick and Easy Method to Remove Html Tags中提供的代码。

于 2013-08-18T18:43:56.883 回答