Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: Input record separator

by TedPride (Priest)
on Mar 18, 2005 at 18:33 UTC ( [id://440772]=note: print w/replies, xml ) Need Help??


in reply to Input record separator

You haven't stated what you want to do with the data once you have it. So I've written the following for both single item lookup and output in order, using the same set of data storage:
use strict; use warnings; my ($key, %hash, @order); while (<DATA>) { $key = substr($_,1,length($_)-2); $hash{$key} = <DATA>.<DATA>.<DATA>; push @order, $key; } # To look up a specific record: $key = 'Record 3'; print "$key =>\n$hash{$key}\n"; # To output the records in order: print "$_ =>\n$hash{$_}\n" for @order; __DATA__ >Record 1 AGTCTAGTCAT CATCATAAGAT CATCAATCACA >Record 2 ATGAACAGCAG ATGAAGAATGG ATAG >Record 3 AGTCTAGTCAT CATCATAAGAT CATCAATCACA >Record 4 ATGAACAGCAG ATGAAGAATGG ATAG

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (5)
As of 2024-04-24 01:22 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found