From the discussion I see that I misunderstood your initial posting. But I am as confused as kennethk is.
What I think so far:
- you have a file with a lot of lines
- you want to match several lines and join them into one
- the lines you want to match build a consecutive range (e.g. lines 5-11)
- the range of lines you want to match starts with a line containing the string "remotely"
- the range of lines you want match ends with a line containing the string "p_agrs"
Based upon that, I guessed this code:
#! /usr/bin/perl
use strict;
use warnings;
# open file and read from that handle...
while ( <DATA> ) {
chomp;
print if m/remotely/ ... m/p_agrs/;
print $/ if m/p_agrs/;
}
__DATA__
not me
foo remotely
bar01
bar02
bar03
p_agrs
i am not here
foo2 remotely
barbar01
p_agrs
i am out...
result:
foo remotelybar01bar02bar03p_agrs
foo2 remotelybarbar01p_agrs
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.