Skip to main content

Text: replace

Replace a text match with another text. The match is literal (not a regular expression) and every occurrence is replaced.

Example
Parameters:
- From: World
- To: France
Input:
- connector: Hello, World
Ouput: Hello, France

Parameters

From

The literal text you want to replace in the original text. Defaults to an empty string.

To

The text you want to replace the match with. Defaults to an empty string — leaving it empty deletes every occurrence of From.

Input

Textrequired
The text before the replacement.

Output

Text
The text after the replacement.