Software or programs that does this...

doublea

Registered Member
Joined
Aug 7, 2012
Messages
54
Reaction score
11
Is there any program that will take information from this format "1 2 3 4 5 6 7 8 9 10" and turn it into this format?


"1
2
3
4
5
6
7
8
9
10"

I know im not the best at describing what I need but hopefully someone here can understand this. Thanks
 
For replacing whitespaces/delimiters with newline, I use emacs.

Knowledge about regular expressions is required, might not that you are looking for...

Is there any program that will take information from this format "1 2 3 4 5 6 7 8 9 10" and turn it into this format?


"1
2
3
4
5
6
7
8
9
10"

I know im not the best at describing what I need but hopefully someone here can understand this. Thanks
 
Thank you! Very much. I will check it out. Thanks!
 
textmechanic.com

use the add line feature and tell it to make a new line after every space/blank
 
For the example you provided, you can easily do this using the free Notepad++ (http://notepad-plus-plus.org/download/) along with regular expressions.


  1. After opening Notepad++ click "Search" on the top menu, and then click on "Replace".
  2. At the bottom where it says "Search Mode" click on where it says "Regular Expression".
  3. Where it says "Find What" type in "\s" (type the backslash and s without the quotes).
  4. Where it says "Replace With" type in "\n" (backslash and n without the quotes).
  5. Finally, click on "Replace All".

You may want to change the search mode back to "Normal" after you are done.
 
Back
Top