Capture Group References
In Wrangle transformations that support use of patterns, you may need to specify capture groups. A capture group is a pattern that describes a set of one or more characters that constitute a match. These matches can be programmatically referenced in replacement values.
Basic Capture Groups
Example 1
Transformation Name | |
---|---|
Parameter: Columns | All |
Parameter: Find | `{start}(%+) ` |
Parameter: Replace with | 'First Word\:$1' |
Elements of the matching pattern (on:):
Reference | Description |
---|---|
{start} | A Wrangle reference to the start of the tested value. |
(%+) | Matches on one or more characters of any time. Note The parentheses indicate that this set of characters is a capture group. |
Last character in the matching pattern is an empty space. |
Matches: First set of any characters in the tested value up to the first empty space (the first word), across all columns of the dataset.
Replaced with: The text value First Word:
followed by a reference to the first capture group ($1
), which returns the first word found in the tested value.
Example 2
The previous example works fine, as long as there is a space in the tested value to identify the end of the first word. If there is one and only word in the tested value, then you must amend the on:
parameter value with the following:
Transformation Name | |
---|---|
Parameter: Columns | All |
Parameter: Find | `{start}(%+) ( |{end})` |
Parameter: Replace with | 'First Word\:$1' |
In this case, the second capture group features two elements:
Reference | Description |
---|---|
first character in the second capture group is an empty space. | |
| | Logical OR, which means that the capture group matches on either the empty space or the following value, which is a reference to the end of the tested value. |
{end} | A Wranglereference to the end of the tested value. |
Example 3
Transformation Name | |
---|---|
Parameter: Columns | All |
Parameter: Find | `{start}(%+) (%+)( |{end})` |
Parameter: Replace with | 'Second Word\:$2' |
Matches: The on:
pattern has been augmented to include the second word in the tested value, across all columns of the dataset.
Replaced with: The text value Second Word:
followed by a reference to the second capture group ($2
), which returns the second word found in the tested value.
Dollar sign in Replace transformation
The dollar sign ($) is used as a form of escape character in the with
parameter of the Replace transformation. This pattern identifies the replacement string.
In the table below, you can review how these replacement patterns are supported.
Pattern | Description |
---|---|
$$ | Inserts a |
| For non-negative digits |
Examples
In the following example, the MyColumn
column contains the value foobar
in all rows.
source value | Replace transformation | replacement | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
foobar |
| $foobar | ||||||||
foobar |
Note that the | o |
Positive and Negative Lookaheads
In regular expressions, you can use positive and negative lookahead capture groups to capture content that is conditionally followed or not followed by a specified capture group.
Type | Example expression | |
---|---|---|
Positive lookahead | /q(?u)/ | Capture the letter |
Negative lookahead | /q(?!u)/ | Capture the letter |