Problem
I want to replace all occurances of : with a new line character.
What I’m currently doing is copying a new line char and pasting it in the replace field.
Is there an easier way to do this?
Lösung
Ctrl+enter, or you can turn on regex mode and enter a \n
Enable regex in the find panel.
Then you can use
- \t for tabs.
- \r for carriage returns.
- \n for newlines.