Advertisement
Advertisement

Frequently Asked Questions

What is the difference between plain and regex mode?

In plain mode the find field is treated as a literal string — no special characters are interpreted. In regex mode the find field is parsed as a regular expression, letting you use patterns like \d+ to match digits or \bword\b for whole-word matching.

What does "Global (replace all)" do?

When enabled, every occurrence of the search term in the text is replaced. When disabled, only the first occurrence is replaced.

How do I match a newline in regex mode?

Use \n in the find field to match newline characters. For example, the pattern \n\n matches a blank line between paragraphs.