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
|`type = 'track' and ( event = 'Click' or match( 'Button *', event ) )`|
111
117
|`( type = 'track' or type = 'identify' ) and ( properties.enabled or match( traits.email, '*@company.com' ) )`|
118
+
|`!( type in ['track', 'identify'] )`|
112
119
113
120
## Functions
114
121
@@ -134,7 +141,7 @@ For example, you can write `length( userId ) > 0` instead of `typeof( userId ) =
134
141
135
142
### `match( string, pattern )`
136
143
137
-
The `match( string, pattern )` function uses "glob" matching to return `true` if the given string fully matches a given pattern. Glob patterns are case sensitive. If you only need to determine if a string contains a given substring, you should use `contains()`.
144
+
The `match( string, pattern )` function uses "glob" matching to return `true` if the given string fully matches a given pattern. Glob patterns are case sensitive. If you only need to determine if a string contains another string, you should use `contains()`.
0 commit comments