My input is similar to this:
<a href="link">text</a> <a href="correctLink">See full summary</a> From this string i want to get only correctLink (the link that has See full summary as text) .
I'm working with python, and i tried:
re.compile( '<a href="(.*?)">See full summary</a>', re.DOTALL | re.IGNORECASE ) but the only string i get with findall() is link">text</a> <a href="correctLink.
Where is my mistake?