简体   繁体   中英

How can I extract this text from an HTML page in C#?

Here is my code:

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 + "";

How can I take

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

from the HTML page?

If I understand correctly, all you want to do is strip away all the HTML tags so you're only left with the text.

A lighter weight solution over htmlagilitypack is the code presented in the article Quick and Easy Method to Remove Html Tags .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM