Regular Expressions 101

Community Patterns

Capture Query Strings

3

Regular Expression
Python

r"
((?<=[\?\&])foo\=[^\&\#]*)|((?<=[\?\&])foo(?=[\&\#]))|((?<=[\?\&])foo(?!.))
"
g

Description

A solution for capture query params.

Submitted by Rafael Laurindo - 8 years ago