I formatted your code using code tags. Please read
Writeup Formatting Tips.
sub delimit {
my ( $tos, $ccs, $rp, $sb, $body, $in_file ) = @_;
my @lines;
if ( defined $in_file ) { # file submited
@ARGV = $in_file;
$body = "";
while (<>) {
push( @lines, $_ ) unless (/espf\[/); # hangs here some
+times
} # end of while
} # end of if
} # end of sub
If you wrote the "delimit" sub, perhaps you could describe in words what you are trying to accomplish. It seems like you are trying to open a file named by the $in_file variable. Perhaps if you use the open function, instead of assigning to @ARGV (which is a little unusual), you could at least get some information as whether the input file exists. For example:
open my $fh, '<', $in_file or die "Error: can not open file $in_file $
+!";
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.