I need a regex that can get the company name (in this case "google.com") from this format:
company=google.com&extension
According to https://regex101.com/ this should work:
(?<=company).*(?=&ext)
However when I try =REGEXEXTRACT(B3, "(?<=company).*(?=&ext)") in Google Sheets I get an error:
Function REGEXEXTRACT parameter 2 value "(?<=company).*(?=&ext)" is not a valid regular expression.
Ive also tried =REGEXEXTRACT(B3, "/(?<=company).*(?=&ext)/")
Function REGEXEXTRACT parameter 2 value "/(?<=company).*(?=&ext)/" is not a valid regular expression.

