Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
Thanks in advance for any and all help.if (open(SF,"<$input")) { if (open(DF,">>$output")) { $fmt_edi = <SF>; $fmt_edi =~s/\v/\n/gs; print DF "$fmt_edi"; } else { } } else { } close DF; close SF;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Difficulty Substituting Vertical Tab With Newline
by jasonk (Parson) on Feb 24, 2003 at 22:15 UTC | |
|
Re: Difficulty Substituting Vertical Tab With Newline
by blakem (Monsignor) on Feb 24, 2003 at 22:24 UTC |