Remembers your settings – Remembers your settings for next time you do a find/replace (doesn’t remember find/replace/scope as these will change each time)
Regex new feature
Get the Regex Power ! ⚡️
“John Smith” to “Smith John”
Find
(\w+)\s+(\w+)
Replace with
$2 $1
Result: Smith John.
Replace all double spaces
Find
\s{2,}
Replace with
(one space)