๐ Find and Replace
Find a specific string within a block of text and replace every occurrence at once. Supports toggling case sensitivity, plus advanced pattern matching with regular expressions.
How to use
- Enter the text you want to search and replace within.
- Enter the text to find and the text to replace it with.
- Toggle "Case-sensitive" and "Use regex" as needed.
- The replaced result and match count appear automatically.
FAQ
How are regex special characters handled?
With "Use regex" off, the search text is treated as a plain string, so regex special characters (. * + ? etc.) are matched literally. Turning it on interprets the search text as a regex pattern.
Can the replacement text reference the matched portion?
With "Use regex" on, you can use capture group references like $1 in the replacement text.
What happens if I enter an invalid regex?
An error message is shown and the original text is returned unchanged.