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

Re: Data managing problem

by vinoth.ree (Monsignor)
on Feb 22, 2013 at 07:29 UTC ( [id://1020092]=note: print w/replies, xml ) Need Help??


in reply to Data managing problem

Use hash and save each line with the second field as key of each record. So you will get the latest record if the key get duplicated.

use strict; use warnings; use Data::Dumper; use utf8; my %hash ; while(<DATA>) { my @arr = split(/\s+/, $_); $hash{$arr[1]}= $_; } print Dumper \%hash; __DATA__ 1/2/2013 cgoo nreuiheru 1/4/2013 doow reiqrqueih 1/5/2013 hellio ruieqrhfuepqh 1/20/2013 cgoo 3rhquh4ureyh 1/30/2013 yetil jerqohgqrij 2/13/2013 hellio rueqipheruh 2/14/2013 cgoo wehrig4r74378

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (5)
As of 2024-04-24 18:37 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found