Practical guide
How to use the text replacer
The text replacer substitutes every matching occurrence of one string with another. It is useful for controlled cleanup, but global replacement cannot understand grammar, code context or unintended partial matches.
Good reasons to use it
- Update a repeated label in a short document.
- Normalize a known token before import.
- Preview a bulk replacement on a copied sample.
A reliable workflow
- Paste a copy of the text and specify the exact match and replacement.
- Generate the result and inspect every changed context.
- Apply the change to the source only after keeping a backup.
How to interpret the result
Matching may be case-sensitive and can change text inside longer words, URLs or code. When context matters, use a regular expression or structured editor with a preview.
Frequently asked questions
Can this replace only whole words?
The basic tool performs direct string replacement. Whole-word logic requires a more specific pattern-aware method.
Why should I keep a backup?
A global replacement can be difficult to reverse when the replacement text also appears elsewhere.