I have html file in which there is table content and other information in my c#.net application.
I want to parse the table contents for only some columns.Then should I use parser of html or Replace method of Regex in .net ?
And if I use the parser then how to use parser? Will parser extract the inforamation which is between the tags? If yes then how to use ? If possible show the example because I am new to parser.
If I use Replace method of Regex class then in that method how to pass the file name for which I want to extract the information ?
Edit : I want to extract information from the table in html file. For that how can I use html agility parser ? What type of code I should write to use that parser ?