Find & Replace

โ˜…โ˜…โ˜…โ˜…โ˜…โ˜…โ˜…โ˜…โ˜…โ˜…5.0(0 ratings)๐Ÿ‘ 2โค 0

Find and replace text in any document with case-sensitive, whole-word, and regex modes. Live match counter included.

๐Ÿ‘ 2 viewsโค 0 likesโญ 0 ratings๐Ÿ’Ž Free

Find & Replace

โ€”

Rate This Tool

Your rating helps improve ranking, recommendations and quality score.

5.0/50 users rated this tool
โ˜…โ˜…โ˜…โ˜…โ˜…โ˜…โ˜…โ˜…โ˜…โ˜…
Click a star to submit your rating

About This Tool

Find & Replace Modes

  • Plain โ€” exact text match
  • Case-sensitive โ€” distinguishes upper and lowercase
  • Whole word โ€” matches whole words only (won’t match “cat” inside “category”)
  • Regex โ€” full JavaScript regular expression support for advanced patterns

Regex Cheat Sheet

  • d โ€” any digit
  • s โ€” any whitespace
  • w โ€” any word character
  • . โ€” any character
  • + โ€” one or more
  • * โ€” zero or more
  • ^...$ โ€” line start / end

Use capture groups (group) in your search and reference them as $1, $2 in the replace field.

Frequently Asked Questions

What if I need to replace newlines?
Enable Regex mode and use n for newlines, t for tabs, rn for Windows line endings. You can also normalize all line endings by replacing rn|r with n.
Can I do case-preserving replacement?
Standard replace doesn't preserve case (Apple u2192 orange becomes 'orange', not 'Orange'). For case-preserving replace, use regex with a function callback in browser dev tools, or post-process the result with a case converter.
How do I escape special regex characters?
Disable the Regex checkbox u2014 plain mode automatically escapes everything. If you need regex but want to match a literal '.' or '$', prefix it with a backslash: . or $.