I have a number of HTML files and I want to extract a particular value from all those files.
<div class="ABC">Value</div>
I want to extract the Value
from all the pages. Should I use regex or some HTML parsing libraries?
I am not very much familiar with regex, and I couldn't find any documentation of HTML library - HTML Agility.
Which approach should I follow? If I should use Regex, Or library or is there a better way of doing it?