What would be the reg-ex expression be to find urls that contains both "subsciption" and "stock" in any order
/pay/subscription/confirmation?utk=67&key=13508952&efnc=d949fcf32f36e695b6f415ff20e47a20&stock=91
I'm trying to use this for filtering within Google Analytics.
Iv looked at other answers such as this:
And they suggest this syntax:
(?=.*subscription)(?=.*stock) but this isn't even accepted as valid regex.
This produces the message "Your data request includes an invalid regular expression."