- Text
- Find & Replace
Find & Replace
Search and replace text
Frequently Asked Questions
What is find and replace?
Find and replace searches for specific text patterns and replaces them with new text. It supports plain text matching, case-sensitive search, whole word matching, and regular expressions for advanced patterns.
What are regular expressions (regex)?
Regular expressions are patterns for matching text. For example, \d+ matches numbers, [A-Z] matches uppercase letters, .* matches any characters. They enable powerful search and replace operations.
How do I replace line breaks or special characters?
Use escape sequences: \n for newline, \t for tab, \s for whitespace. In regex mode, you can match and replace any special character or pattern.