I’ve got a string contained in a variable and just want to extract the url. The string is srs test reena , Url : https:\\auckland.sharepoint.com\sites\###/###\Submission review sheets\SRStest-reena.docx all I want is from and including the url from https: does anyone have a regex example that actually works?
Solved! Go to Solution.
Hey Julian,
This should work: (?<=test reena , Url : ).*
Cheers,
Chris