Remove Text Using Regex
Removes occurrences of a specified regular expression from a text.
Overview
This operation lets you clean a text by removing all or specific occurrences of a regular expression pattern. You can optionally define the strategy to either remove the first occurrence, the last occurrence, or all occurrences of the matched pattern in the text.
Syntax
This operation supports both of the following syntaxes:
Option 1
This syntax defines the text as data.
Option 2
Note: Specifying a remove strategy is optional. By default, all matching occurrences are removed.
Data
The table below lists the names of the data elements in this operation and indicates which can be renamed in the syntax.
the text
Yes
the regular expression
No
the remove strategy
No
Parameters
Parameters are placeholders for data. Refer to the table below for details on each parameter in this operation. In the syntax, replace parameters with your own values.
input
The text to be cleaned.
The order number is 12345.
Yes
regex
The regular expression pattern to be removed.
[0-9]+
Yes
strategy
The removal strategy. Accepted Values:
first - Removes the first occurrence.
last - Removes the last occurrence.
all - Removes all occurrences. (default)
all
Optional
Examples
1. No removal strategy specified
In this example, no removal strategy is specified, so all matching occurrences are removed by default.
2. Removing the first occurrence
3. Removing the last occurrence
Last updated
Was this helpful?