I am scraping a site and getting this:
<input type="BUTTON" value="Geographic Footprint" name="GEO_FOOTPRINT" onclick="return OpenModalDialog('https://mspfast.elavon.com/Symphony/client/client.do?uid=0XrHleUX5MudUYVwwsGDYCl&novaid=5418812&readonly=Y&context=BOARDING&defaultRoute=GeographicFootprint')">
What I want is to just grab the uid: 0XrHleUX5MudUYVwwsGDYCl
I am quite new to regex and don't really understand how it works.
I've tried doing:
'/value="Geographic Footprint" name="GEO_FOOTPRINT" onclick="return OpenModalDialog(\'https://mspfast.elavon.com/Symphony/client/client.do?uid=([a-zA-Z0-9]+)\&/'
as the regex but it does not work. I get the error of unknown modifier '/'