I don't spot the problem; are you getting the amount of output you expect? That is, do you have evidence that the last is triggering correctly? It would be good to have a
check that each of your regexes in the foreach() loop is
matching only once.
Your code is complicated enough that you should be using strict and declaring all variables (in the sub as my() variables where possible).
A more concise way to say:
for ($i=0;$sof_to_delete>0;$sof_to_delete--)
{shift(@sof_i);}
is
splice(@sof_i, 0, $sof_to_delete);
A perhaps better way to destructively use the beginning of an array, would be to replace both for loops in get_i with:
while (defined($_ = shift(@sof_i)) {
... body of your foreach (@sof_i) ...
}
Another possibility is to set the input record separator
to "="x30 where you are reading into @sof_i (assuming it
comes from a filehandle at some point) so you get only one
array element per thing you want to handle.
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.