Extract a word from a line of HTML
I have the following line from a html file. src="https://www.com/seek-images/seek-icons/horoskop-*pluto.gif*" alt="" />*Pluto*</div>n Using Python , regex, How do I extract Pluto (or any planet name here)..from the above line. I tried regex with [w]+ and match = re.search(regexeg, line) if…