Regex Find & Replace - Search Replace with Regex
Find and replace text using regular expressions. Test patterns, use capture groups, preview changes. Free, private, works offline.
0 matches found
Matches will be highlighted here
Replacement result will appear here
Common Patterns Reference
| Pattern | Description | Example |
|---|---|---|
\\b\\w+@\\w+\\.\\w+\\b | Simple email | Replace with [EMAIL] |
(\\d{3})-(\\d{3})-(\\d{4}) | Phone format | 123-456-7890 → (123) 456-7890 |
\\s+ | Multiple spaces | Collapse to single space |
^\\s+|\\s+$ | Trim whitespace | Remove leading/trailing |
<[^>]+> | HTML tags | Strip all tags |
Copied!