Nest Wildcard Exclusion? #4934
Unanswered
matthewjchou
asked this question in
Q&A
Replies: 1 comment
-
I'd probably just drop the fields you don't want either before or after in a separate modify filter. It keeps things simple, particularly if you modify the fieldset in the future in a way that impacts your regex. My general policy is to try to avoid complex regexes: they're expensive if only in having to maintain them for my cognitive load! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Can you use Wildcard in Nest to exclude a fields?
I have a bunch of keys that fall into 2 categories, set A and set B. I'd like to nest set A without nesting set B, but set A doesn't have common prefixes and set B does.
Ex.
I've tried different regex solutions, but I don't think WILDCARD uses fully featured regex - although I can't find what it actually does use.
Ex.
With the expected output of:
Any help would be appreciated - also open to alternative solutions.
Beta Was this translation helpful? Give feedback.
All reactions