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
|`&N:S`| Split value using separator `S`, output `N`-th field.<br>Field indices `N` start from 1.<br>Use `-N` for backward indexing.<br>Any other character than `:` can be also used as a delimiter.<br>Use of `/` as a delimiter has special meaning (see below). |
5
+
|`&N:S`| Split value using separator `S`, output `N`-th field.<br><small>Field indices `N` start from 1.<br>Use `-N` for backward indexing.<br>Any other character than `:` can be also used as a delimiter.<br>Use of `/` as a delimiter has special meaning (see below).</small>|
6
6
|`&N/S`| Split value using regular expression `S`, output `N`-th field. |
7
7
|`&N`| Split value using default separator, output `N`-th field. |
|`s:X:Y`| Replace first match of a regular expression `X` with `Y`.<br>`Y` can reference capture groups from `X` using `$0`, `$1`, `$2`, ...<br>Any other character than `:` can be also used as a delimiter. |
7
-
|`s:X`| Remove first match of a regular expression `X`.<br>Equivalent to `s:X:`. |
6
+
|`s:X:Y`| Replace first match of a regular expression `X` with `Y`.<br><small>`Y` can reference capture groups from `X` using `$0`, `$1`, `$2`, ...<br>Any other character than `:` can be also used as a delimiter.</small>|
7
+
|`s:X`| Remove first match of a regular expression `X`.<br><small>Equivalent to `s:X:`.</small>|
8
8
|`S:X:Y`<br>`S:X`| Same as `s` but replaces/removes all matches. |
9
-
| `@:X1:Y1:...:Xn:Yn:D` | Regular expression switch.<br>Output `Yi` for first `Xi` that matches input.<br>Output `D` when there is no match.<br>`Yi` can reference capture groups from `Xi` using `$0`, `$1`, `$2`, ...<br>Any other character than `:` can be also used as a delimiter.
9
+
| `@:X1:Y1:...:Xn:Yn:D` | Regular expression switch.<br><small>Output `Yi` for first `Xi` that matches input.<br>Output `D` when there is no match.<br>`Yi` can reference capture groups from `Xi` using `$0`, `$1`, `$2`, ...<br>Any other character than `:` can be also used as a delimiter.</small>
10
10
|`$0`, `$1`, `$2`, ... | Capture group of a global regular expression. |
0 commit comments