I would like to know if there is anyway to Extract highlighted text from a paragraph on a webpage.
After a long search.I have come across this module https://python-docx.readthedocs.io/en/latest/ but its for documents.
For example lets say we have the following paragraph:
"Stack Overflow is a privately held website, the flagship site of the Stack Exchange Network,created in 2008 by Jeff Atwood and Joel Spolsky. It was created to be a more open alternative to earlier question and answer sites such as Experts-Exchange. The name for the website was chosen by voting in April 2008 by readers of Coding Horror, Atwood's popular programming blog. It features questions and answers on a wide range of topics in computer programming"
Now in the above paragraph lets say the bold string of words are the ones I highlighted and I want to extract plus output the highlighted ones. Is there a way I can do this on a webpage.
So the output should be: privately held website ; Experts-Exchange ; wide range of topics.