Skip to main content

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.

  • These patterns are described using regular expression syntax. Designer Cloud implements a version of regular expressions based off of RE2 and PCRE regular expressions.

Basic Capture Groups

Example 1

Transformation Name

Replace text or pattern

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.

注記

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

Replace text or pattern

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

Replace text or pattern

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 $ in the replacement value.

$n or

$nn

For non-negative digits n, this pattern inserts the nth parameterized sub-match string, provided that the first argument was a regex object.

Examples

In the following example, the MyColumn column contains the value foobar in all rows.

source value

Replace transformation

replacement

foobar

Transformation Name

Replace text or pattern

Parameter: Column

MyColumn

Parameter: Find

'f'

Parameter: Replace with

'$$f'
$foobar
foobar

Transformation Name

Replace text or pattern

Parameter: Column

MyColumn

Parameter: Find

`(f)(o)o(b)ar`

Parameter: Replace with

'$2'

Note that the on parameter is a Wrangle .

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 letterqonly when it is followed by the letteru. Letteruis not captured.

Negative lookahead

/q(?!u)/

Capture the letter q when it is not followed by the letter u. Letter u is not captured.