I am working in C# .net Core.
- I have HTML files
- For each file I have a XPATH which points to part of the page
Which library/nuget package can I use in C# to extract my data?
I want:
extractedData = xpathLib.Extract(htmlContent, xpath)
I do not want to use a technique which load a html browser process (like selenium driver opening chrome) since I have to extract 10 000 of webpages per day.
regards. ps: i have seen microsoft provides xpath lib, but it targets only xml.