You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there any way to match a question-mark literally without using regexp?
Example:
I want a exclude rule like ://example.com/foo/bar?frog_id=* where the ? is a ? and not any char. I could use /:\/\/example\.com\/foo\/bar\?frog_id=.*/, I know but come on this isn't readable. So is there a way to do something like ://example.com/foo/bar\?frog_id=* or ://example.com/foo/bar??frog_id=*?
The text was updated successfully, but these errors were encountered:
Is there any way to match a question-mark literally without using regexp?
Example:
I want a exclude rule like
://example.com/foo/bar?frog_id=*
where the?
is a?
and notany char
. I could use/:\/\/example\.com\/foo\/bar\?frog_id=.*/
, I know but come on this isn't readable. So is there a way to do something like://example.com/foo/bar\?frog_id=*
or://example.com/foo/bar??frog_id=*
?The text was updated successfully, but these errors were encountered: