I need some guidance with refining my regex. I have the source of a webpage, and would like to extract the href's from the page. the table doesn't have any ID's or class. I have decided to use regex, however my expression seems to be matching more than I want. I have tried the following:
http:\/\/(.*?)(?=.*showuri)(.*?)responseType=xml\">\/lnc\/
my start is http:// the end is responseType=xml">/lnc/ and I need the middle bit to contain the word showuri
I am using Python 3