\[code\]HttpWebRequest myRequest = (HttpWebRequest)WebRequest.Create("http://www.home.com");myRequest.Method = "GET";WebResponse myResponse = myRequest.GetResponse();StreamReader sr = new StreamReader(myResponse.GetResponseStream(), System.Text.Encoding.UTF8);string result = sr.ReadToEnd();sr.Close();myResponse.Close();\[/code\]The string contains whole html of that webpage, now I want to extract html tags from that string. How do I that?