Click here to Skip to main content
15,892,746 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
I got full source code using URL and I removed all image tag using regular expression now I need to remove all type of video file using regular expression .

WebClient wb = new WebClient();
string storeDate;
storeDate = wb.DownloadString(textBox1.Text);
MessageBox.Show(storeDate);
string result4 = Regex.Replace(storeDate, @"]*>(?:\s*?)?", "", RegexOptions.IgnoreCase);
MessageBox.Show(result4);
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900