D doublea Registered Member Joined Aug 7, 2012 Messages 54 Reaction score 11 Sep 14, 2012 #1 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
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
cooooookies Senior Member Joined Oct 6, 2008 Messages 1,133 Reaction score 283 Sep 14, 2012 #2 For replacing whitespaces/delimiters with newline, I use emacs. Knowledge about regular expressions is required, might not that you are looking for... doublea said: 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 Click to expand...
For replacing whitespaces/delimiters with newline, I use emacs. Knowledge about regular expressions is required, might not that you are looking for... doublea said: 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 Click to expand...
D doublea Registered Member Joined Aug 7, 2012 Messages 54 Reaction score 11 Sep 14, 2012 Thread Starter Thread Starter #3 Thank you! Very much. I will check it out. Thanks!
H highl4nder Power Member Joined May 13, 2012 Messages 554 Reaction score 145 Sep 15, 2012 #4 textmechanic.com use the add line feature and tell it to make a new line after every space/blank
H HFlame7 Regular Member Joined Jun 20, 2011 Messages 277 Reaction score 161 Sep 15, 2012 #5 For the example you provided, you can easily do this using the free Notepad++ (http://notepad-plus-plus.org/download/) along with regular expressions. After opening Notepad++ click "Search" on the top menu, and then click on "Replace". At the bottom where it says "Search Mode" click on where it says "Regular Expression". Where it says "Find What" type in "\s" (type the backslash and s without the quotes). Where it says "Replace With" type in "\n" (backslash and n without the quotes). Finally, click on "Replace All". You may want to change the search mode back to "Normal" after you are done.
For the example you provided, you can easily do this using the free Notepad++ (http://notepad-plus-plus.org/download/) along with regular expressions. After opening Notepad++ click "Search" on the top menu, and then click on "Replace". At the bottom where it says "Search Mode" click on where it says "Regular Expression". Where it says "Find What" type in "\s" (type the backslash and s without the quotes). Where it says "Replace With" type in "\n" (backslash and n without the quotes). Finally, click on "Replace All". You may want to change the search mode back to "Normal" after you are done.
M Mr_Cool Junior Member Joined Aug 17, 2012 Messages 110 Reaction score 39 Sep 15, 2012 #6 Excel? Copy > Paste Special > Transpose