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

Re: perl script

by citromatik (Curate)
on Jun 24, 2009 at 12:04 UTC ( [id://774368]=note: print w/replies, xml ) Need Help??


in reply to perl script

perl -lne '/gi\|(\d+)\|/ && push @sofar,$1}{$,=",";print @sofar' <yourfile>

citromatik

Replies are listed 'Best First'.
Re^2: perl script
by ack (Deacon) on Jun 24, 2009 at 18:10 UTC

    I used a similar idea but did as follows:

    my $file = '...the OPs File example..." #used as a string # to simplify my # test my @gi_ids = $file =~/gi\|(\d+)\|/g;

    That leaves the list @gi_ids containing all of the gi id's that were in the string (i.e., it finds 4 gi id's in the OPs example).

    Just another possible strategy. It looks to me like all of the respondents' ideas would work fine. Mine is just another variation.

    Hope that helps.

    ack Albuquerque, NM

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (3)
As of 2024-03-29 06:24 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found