Skip to content

Instantly share code, notes, and snippets.

@lukebussey
Created November 26, 2015 03:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lukebussey/754fdec17f5b17643064 to your computer and use it in GitHub Desktop.
Save lukebussey/754fdec17f5b17643064 to your computer and use it in GitHub Desktop.
Remove utm_* and mkt_tok parameters
(?:utm_[a-z]+|mkt_tok)=[^&]+&?
Remove trailing & or single ?
\??&?$
Input: /?utm_foo=bar&utm_bar=baz&mkt_tok=123&utm_baz=qux&bar=qux&utm_qux=foo&baz=qux&foo=bar
Output: /?bar=qux&baz=qux&foo=bar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment