How to extract keywords from an HTML page in C #?

Basically I want to extract keywords or words or tokens that are present on a web page after deleting stop words. Does anyone know how to do this? Code in C # will be appreciated.

+3
source share
2 answers

Use an HTML parsing library such as the HTML Agility Pack .

Once you upload an HTML document with it, you can request it using the Xpath syntax - it exposes the HTML in the same way XmlDocument.

0
source

HTML Agility Pack, Oded , HTML, - - . : , ?

0

Source: https://habr.com/ru/post/1744699/


All Articles