Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re^2: making a text file to an hash array

by changma_ha (Sexton)
on Jul 14, 2010 at 11:27 UTC ( [id://849499]=note: print w/replies, xml ) Need Help??


in reply to Re: making a text file to an hash array
in thread making a text file to an hash array

This node falls below the community's threshold of quality. You may see it by logging in.
  • Comment on Re^2: making a text file to an hash array

Replies are listed 'Best First'.
Re^3: making a text file to an hash array
by cdarke (Prior) on Jul 14, 2010 at 13:38 UTC
    Please use <code> tags. Your code appears like this:
    #!/usr/bin/perl use strict; use warnings; my %hasharray; open (my $fh,"<","c:/datanew.txt") or die ("can't open the file"); while(my $line= <$fh>){ #print $_ if ($line=~ /[a-z]/){ my $n=$line; #print $n; my $nextline= <$fh>; # print $nextline; if($nextline =~/[a-z]/){ #****/here I am having problem.. i don't klnow hopw to co +mplete the code****/ } else { my @d =split(',',$nextline); } } }
    You appear to have a sequential file, and are reading records in two places. Your data, as displayed, appeared to be just one line with fields separated by a space. Can you please clarify the data format?

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://849499]
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: (4)
As of 2024-03-29 15:35 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found