[Solved] Search for something in HTML C# [duplicate]
Simple regexp will help you. You are looking for something start with with http and ending with 720.mp4 The example code: string strRegex = @”http.*720.mp4″; RegexOptions myRegexOptions = RegexOptions.None; Regex myRegex = new Regex(strRegex, myRegexOptions); string strTargetString = @”<html> ” + “\n” + @” …..” + “\n” + @” <script>” + “\n” + @” {” … Read more