Find and Replace Tool
Search and replace text with regex
Original Text
Find and Replace
Result
Regex Tips
. = any character |
* = 0 or more |
+ = 1 or more |
? = optional |
\d = digit |
\w = word |
\s = space |
^ = start |
$ = end
Search and replace text with regex