Solved

Regex example to extract the url

  • 10 April 2018
  • 1 reply
  • 0 views

Badge +3

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?

icon

Best answer by Chris_Ben 10 April 2018, 07:11

View original

1 reply

Userlevel 6
Badge +12

Hey Julian,

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

Cheers,

Chris

Reply