In Oxygen I can search for whitespace (newlines, tabs, etc.) using regular expressions, but if I want to replace what I find with some of those special characters I can't use the regular expression and I have to use the character itself.
Imagine I want to replace a newline with a tab, I search for
Code: Select all
^(.+)\n(.+\n)
Code: Select all
$1\t$2
Code: Select all
$1 $2
Thanks a lot!
Cheers, Manuel