Hi I have Resume in the html format, I am reading file using StreamReader ,and I am removing tags using below method.
using (StreamReader sr = new StreamReader("\\Myfile.html"))
{
String line = sr.ReadToEnd();
string jj = Regex.Replace(line, "<.*?>", String.Empty);
}
Its working Damn Cool
But however as per my requirement I need the data only inside the body tag. but no body tag, and with no tags inside.