Skip to main content

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.comsites###/###Submission review sheetsSRStest-reena.docx   all I want is from and including the url from https: does anyone have a regex example that actually works?

Hey Julian,

This should work: (?<=test reena , Url : ).*

Cheers,

Chris


Reply