Microsoft
Software
Hardware
Network
Question : Regular Expression to create spacing / new lines
So... I'm in notepad++, I have a text file with a list of filenames:
7-803-1997
46-183-1999
7-159-1985
14-4993-2008
84-1068-2008
I want to run an expression in find/replace that can reformat as follows:
7
803
1997
46
183
1999
and so on... basically breaking it down to three lines per record. Is this possible?
Answer : Regular Expression to create spacing / new lines
1: 2: 3: 4: 5:
Find: (\d+)-(\d+)-(\d+) Replace: \1\r\n\2\r\n\3\r\n
Random Solutions
Windows Service crashing on one machine, not on the other
How to undelete public folder content on MS Exchange Server 2000
Delphi Email Blaster - possibly using Report Builder and PsRBExportDevices
Users resolution keeps reverting back to 800x600
Comparing columns in a table
How do I know if my laptop has a spyware?
FTP - without log in
loop an array in an array and insert into db
IF - Then script based on file date?
How to access class due to 'cannot instantiate abstract class' error