Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re^2: getting numeric data from a file into an array

by jmccaslin (Initiate)
on Nov 02, 2011 at 04:09 UTC ( [id://935279]=note: print w/replies, xml ) Need Help??


in reply to Re: getting numeric data from a file into an array
in thread getting numeric data from a file into an array

I should have been more specific. I was suspicious that matching reg exp would do the trick. Here is what I have so far:

# read in times open MYFILE, "<$dir/structs/times"; my @temptimes = <MYFILE>; close(MYFILE); print "$#temptimes\n"; my @strtimes; for (my $i = 2;$i <= $#temptimes;$i++){ if ($temptimes[$i] =~ m/(\d+.\d+)/){ print "$1\n"; } }
I'm having trouble reading the other two values and storing them in an array. I figured I could just multiply by 10^3 to account for the "E+03", as I didn't know how to deal with the "+" sign. Sorry if it seemed like I'm looking for homework solutions - in fact this is not homework. I can do this in other languages, I just want to learn Perl.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://935279]
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: (3)
As of 2024-04-20 01:21 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found