Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re: how to read multiple line from a file

by 2teez (Vicar)
on Apr 13, 2013 at 05:46 UTC ( [id://1028486]=note: print w/replies, xml ) Need Help??


in reply to how to read multiple line from a file

Does this work for you?

use warnings; use strict; use feature 'say'; my $str = do { local $/; <DATA>; }; say join " " => grep { $_ if /fox/ .. /over/ } split /\n/, $str; __DATA__ the quick brown fox jumped over the unfortunate dog
Output
fox jumped over

NOTE:
I used Athanasius data since the OP has none.

If you tell me, I'll forget.
If you show me, I'll remember.
if you involve me, I'll understand.
--- Author unknown to me

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1028486]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (5)
As of 2024-04-19 11:49 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found