macro editing a text file?

Desolation Mir2 (Med Rate Server)

Far

tinmymouthpl0x
Staff member
Administrator
May 19, 2003
20,709
35
3,357
520
I'm trying to get some code out of a text file, but they've removed all the breaks so its hard to sift through it.

is there any program which will run through a text file and press 'enter' where ever there is a # symbol?

so

#1#2#3#4#5#6#7

becomes

#1
#2
#3
#4
#5
#6
#7

thanks
 

Far

tinmymouthpl0x
Staff member
Administrator
May 19, 2003
20,709
35
3,357
520
well not delphi, but yeah i suppose i could create something myself with a little thought, just wondered if there was already an app out there to do it for me
 

Hazuki

VIP
VIP
Apr 14, 2004
3,459
38
265
United Kingdom
Dreamweaver, replace

Code:
#

with
Code:
#
(line break ie just press enter)

First one will be incorrect but others will be fine.
 

Far

tinmymouthpl0x
Staff member
Administrator
May 19, 2003
20,709
35
3,357
520
lol. never actually thought of that, yeah an advanced replace should do it nicely :)