Scraping with selenium
and parsing with re
in python
from the string
<div type="copy3" class="sc-bxivhb dHqnfT">756 W Peachtree St NW Atlanta GA 30308</div>
I'm looking to return
756 W Peachtree St NW Atlanta GA 30308
This regex
("copy3").*?(?=</div>)
Gives me back
"copy3" class="sc-bxivhb dHqnfT">756 W Peachtree St NW Atlanta GA 30308
But I'd like to exclude everything up to the >
before the 756
How do I include this?