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
I want to match only certain prefix filter keys for example
Multiple matching prefix pattern -> (abc:.*|def:.*)$ -> I want to match only keys starting with abc and def and the rest needs to be ignored.
Negate pattern -> ^(?!qwe:.*|rty:.*)$ -> I want to match keys other than starting with qwe or rty.
Is this possible, I tried with this regex pattern, and seems like it is not supported. Is there any other way?
The text was updated successfully, but these errors were encountered:
I want to match only certain prefix filter keys for example
Multiple matching prefix pattern ->
(abc:.*|def:.*)$
-> I want to match only keys starting with abc and def and the rest needs to be ignored.Negate pattern ->
^(?!qwe:.*|rty:.*)$
-> I want to match keys other than starting with qwe or rty.Is this possible, I tried with this regex pattern, and seems like it is not supported. Is there any other way?
The text was updated successfully, but these errors were encountered: