-
Notifications
You must be signed in to change notification settings - Fork 2
String find and replace
Ryan Newington edited this page Apr 12, 2018
·
1 revision
This transform allows you to apply simple find-and-replace operations to an incoming string value
Parameter | Description |
---|---|
Ignore case | Performs a case-insensitive find |
Text to find | Specifies the text to match in the incoming value |
Replacement text | Specifies the value to insert into the string where values matched the value in text to find |
The transform accepts string values as an input.
The transform accepts multiple input values, and processes each of them individually.
The transform returns a string value.
Input value | Text to find | Replacement Text | Output value |
---|---|---|---|
Lithnet ACMA | ACMA | UMARE | Lithnet UMARE |
ABC123DEF | DEF | 456 | ABC123456 |
000123 | 000 | 123 |