Multiple words in one line to separate lines
- 
 Hello 
 I have for example this line :
 Forum1Forum2Forum3
 All the words are 6 letters and i want to separate them in separate lines by number of letters like :
 Forum1
 Forum2
 Forum3
 How can i do that?
- 
 a find/replace with regular expression checked and find what:.{6}
 replace with:$0\r\nIs looking for 6 chars and then replacing the found with this 6 chars but with added end of line characters. Cheers 
 Claudia
- 
 @Claudia-Frank 
 Thanks a lot
 It works.
