hi, i am using regular expression in extract paragraph from html code but it gives me only one (the first one) line written in first <p> i want the whole article in my string. here is my code.
Match m = Regex.Match(htmlstring, @"<p>\s(.+?)\s</p>");
htmlstring=m.Groups[1].Value;
where "htmlstring" all the html code in text form in it.