I am trying to track performance of a URL parameter using Google Data Studio. The URL looks like this:
https://example.com/?gclid=something&extension=me-trying-stuff
I want to get me-trying-stuff
at the end of &extension
.
I am trying to track performance of a URL parameter using Google Data Studio. The URL looks like this:
https://example.com/?gclid=something&extension=me-trying-stuff
I want to get me-trying-stuff
at the end of &extension
.
&extension=([^\s&]*)
This regex will find &extension=
in your url, and capture characters up to the next &
(or whitespace).