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

Re^2: Perl script to print Next line after Pattern Matching

by jwkrahn (Abbot)
on Dec 20, 2011 at 22:05 UTC ( [id://944487]=note: print w/replies, xml ) Need Help??


in reply to Re: Perl script to print Next line after Pattern Matching
in thread Perl script to print Next line after Pattern Matching

Also quick'n'dirty:

use strict; use warnings; @ARGV = <*.doc>; while ( <> ) { print scalar <> if /^Customer ID: Yes/; }

Replies are listed 'Best First'.
Re^3: Perl script to print Next line after Pattern Matching
by Anonymous Monk on Dec 21, 2011 at 04:04 UTC
    I recognize that. So the point is to loop over the file handle; extract the next part when the current part is interesting.
      Should have added above that that works only because the same file handle being used in two places in the same loop does not go out of whack, and state is retained on the next iteration.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (2)
As of 2026-04-17 05:36 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found

    Notices?
    hippoepoptai's answer Re: how do I set a cookie and redirect was blessed by hippo!
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.