Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re: stream parsing an mbox file

by repson (Chaplain)
on Apr 12, 2001 at 15:11 UTC ( [id://72015]=note: print w/replies, xml ) Need Help??


in reply to stream parsing an mbox file

To repeat the behaviour of your code I'd do:
my @mails; while (<>) { if (/^From /) { $mails[$#mails + 1] = $_; } else { $mails[$#mails] .= $_; } }
It seems to me from previous experimentation that any lines in the body text starting with 'From ' will already be quoted with a > character, so that they will not cause the test I used to pass and will not therefore create a new array element.

Replies are listed 'Best First'.
Re: Re: stream parsing an mbox file
by johnfoobar (Initiate) on Apr 12, 2001 at 15:25 UTC
    that's exactly what i was looking for.

    took me a while to spot the ".=" in the else, i thought it was an "=" for a while. :)

    PS, how did you see this post? i can't see it at The Monastery Gates, or in SOPW.. i had to do a search to see my own post. i must be doing something wrong.

      Check the Newest Nodes

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (7)
As of 2024-03-28 13:53 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found