Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Iterator to parse multiline string with \\n terminator

by three18ti (Monk)
on Oct 06, 2013 at 05:46 UTC ( [id://1057121]=perlquestion: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    #/usr/bin/perl
    use strict;
    ...
    while (my $line = $fh_iterator->($fh)) {
        # do stuff to $line
    }
    
  2. or download this
        $line .= $fh_iterator->($fh) if $line =~ /\\\n/
    
  3. or download this
    sub fh_iterator {
        my $fh = shift;
    ...
        $line .= fh_iterator($fh) if $line =~ /\\\n/;
        return $line;
    }
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://1057121]
Approved by Athanasius
Front-paged by mtmcc
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others examining the Monastery: (6)
As of 2024-04-24 20:04 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found