Replaces within a string based on a string comparison.
Finds every occurrence of a piece of text inside a value and swaps it for something else. Use this for straightforward find-and-replace work, such as renaming a term across your data, fixing a recurring typo, or removing an unwanted phrase by replacing it with nothing. The match is literal: it looks for the exact text you enter, and every match in the value is replaced. If you need flexible matching rather than an exact match, use the Replace using regular expression mapper instead.