I need parse links from html, but those of them, which are not followed by 'class="mw-disambig"'. I writed regexp
r'<a href="(.+?)"(?! class="mw-disambig")'
but it still parses something like this
'https://ru.wikipedia.org/wiki/Тюльпан_(значения)" class='
Orginal html:
<a href="here was link" class="mw-disambig" title="Тюльпан"...>
It shouldnt be added or I'm not understanding?
What I am doing wrong?