except

Returns all elements of data except values that match the regex defined in val and keys that match the regex defined in key.
except($data , val = None , key = None ) : List | Dict
$data.except( val = None , key = None ) : List | Dict
Parameters
$data List | Dict

val String (supports Python Regex)

The regex to use to ignore Values that match.

key String (supports Python Regex)

The regex to use to ignore Keys that match. ($data must be a Dict)

Examples

How to exclude members / items / entries of a List

How to exclude members / items / entries of a Dict