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
Hello, I have a problem of finding node case insensitively that needing help.
I want to find whether the node configuration.appender.console exists, ignoring case sensitivity, so that it can match in all the three above cases. I know regex can be used in value filter like "$[*]["appenders"]["console"][?(@.name=~/(?i)stdout/)]", but how do i match the key of node ignoring case sensitivity?
Now I write $[*]["appenders","Appenders"][?(@.console || @.Console)], but this can only match case 1 and case 2.
Looking forward to response, thanks!
The text was updated successfully, but these errors were encountered:
Hello, I have a problem of finding node case insensitively that needing help.
I want to find whether the node configuration.appender.console exists, ignoring case sensitivity, so that it can match in all the three above cases. I know regex can be used in value filter like "$[*]["appenders"]["console"][?(@.name=~/(?i)stdout/)]", but how do i match the key of node ignoring case sensitivity?
Now I write $[*]["appenders","Appenders"][?(@.console || @.Console)], but this can only match case 1 and case 2.
Looking forward to response, thanks!
The text was updated successfully, but these errors were encountered: