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
|`Coalesce(p0, p1, [..pN])`| Returns the first defined, non-null argument. |
192
+
|`Coalesce(a0, a1, [..aN])`| Returns the first defined, non-null argument. |
193
193
|`Concat(s0, s1, [..sN])`| Concatenate two or more strings. |
194
-
|`Contains(s, t)`| Tests whether the string `s` contains the substring `t`. |
194
+
|`Contains(s, p)`| Tests whether the string `s` contains the substring `p`. |
195
195
|`ElementAt(x, i)`| Retrieves a property of `x` by name `i`, or array element of `x` by numeric index `i`. |
196
-
|`EndsWith(s, t)`| Tests whether the string `s` ends with substring `t`. |
197
-
|`IndexOf(s, t)`| Returns the first index of substring `t` in string `s`, or -1 if the substring does not appear. |
196
+
|`EndsWith(s, p)`| Tests whether the string `s` ends with substring `p`. |
197
+
|`IndexOf(s, p)`| Returns the first index of substring `p` in string `s`, or -1 if the substring does not appear. |
198
198
|`IndexOfMatch(s, p)`| Returns the index of the first match of regular expression `p` in string `s`, or -1 if the regular expression does not match. |
199
199
|`Inspect(o, [deep])`| Read properties from an object captured as the scalar value `o`. |
200
200
|`IsMatch(s, p)`| Tests whether the regular expression `p` matches within the string `s`. |
201
201
|`IsDefined(x)`| Returns `true` if the expression `x` has a value, including `null`, or `false` if `x` is undefined. |
202
-
|`LastIndexOf(s, t)`| Returns the last index of substring `t` in string `s`, or -1 if the substring does not appear. |
202
+
|`LastIndexOf(s, p)`| Returns the last index of substring `p` in string `s`, or -1 if the substring does not appear. |
203
203
|`Length(x)`| Returns the length of a string or array. |
204
204
|`Now()`| Returns `DateTimeOffset.Now`. |
205
+
|`Replace(s, p, r)`| Replace occurrences of substring `p` in string `s` with replacement `r`. |
205
206
|`Rest([deep])`| In an `ExpressionTemplate`, returns an object containing the first-class event properties not otherwise referenced in the template. If `deep` is `true`, also excludes properties referenced in the event's message template. |
206
207
|`Round(n, m)`| Round the number `n` to `m` decimal places. |
207
-
|`StartsWith(s, t)`| Tests whether the string `s` starts with substring `t`. |
208
+
|`StartsWith(s, p)`| Tests whether the string `s` starts with substring `p`. |
208
209
|`Substring(s, start, [length])`| Return the substring of string `s` from `start` to the end of the string, or of `length` characters, if this argument is supplied. |
209
210
|`TagOf(o)`| Returns the `TypeTag` field of a captured object (i.e. where `TypeOf(x)` is `'object'`). |
210
211
|`ToString(x, [format])`| Convert `x` to a string, applying the format string `format` if `x` is `IFormattable`. |
0 commit comments