what you probably want is this:

for(@lines){
    last unless $_;
    # your stuff;
}

hth,
Jos

@lines is an array which contains blank lines as well as textlines...what i
want to do is to get a line from array thru shift(@lines)
until the array doesnt contain the textline or array has no more
line(element)..how i should implement the red part

while( ($details_1 = shift(@lines) ) =~ /^$/ )
{   };

Thanks in advance,
Rahul



-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to