Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re: Scanning a file for a match, printing different part of the line when found.

by philipbailey (Curate)
on Mar 26, 2011 at 19:42 UTC ( [id://895691]=note: print w/replies, xml ) Need Help??


in reply to Scanning a file for a match, printing different part of the line when found.

You can do this sort of thing with a one-liner. You don't specify what you want to match in much detail, but here is an example:

perl -ne 'print "$1\n" if /Name:\s*(.+?)\b/' search.txt
  • Comment on Re: Scanning a file for a match, printing different part of the line when found.
  • Download Code

Replies are listed 'Best First'.
Re^2: Scanning a file for a match, printing different part of the line when found.
by ww (Archbishop) on Mar 26, 2011 at 20:21 UTC
    Since OP wasn't specific about how "Name" is constructed, ++

    But note that this will not satisfy the op by printing the (whole) name field, if "Name" is comprised of more than one word (for example: Firstname MI Lastname), because of the \b

Log In?
Username:
Password:

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

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

    No recent polls found