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

Re: Saving data to file

by 2teez (Vicar)
on Apr 08, 2014 at 04:32 UTC ( [id://1081460]=note: print w/replies, xml ) Need Help??


in reply to Saving data to file

Hi viored,

but $main::data[0] (or any other number) isn't referencing what I want it to. How can I print all the contents of the array to an output file?

First off, I need ask why '$main::' i.e package variable?. I think you really need understand how these things works.
Secondly, it's alot better to use a perl for loop, instead of the "C" type like you are using.
Moreso, you can pass the whole array reference at ONCE into the your output subroutine, instead of one at a time.
Some thing like this:

use warnings; use strict; sub output; my $data = [ 1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 2, 2, 3, 34, 5, 6, 7 +, 8, 81 ]; output($data); sub output { open my $fh, '>>', "output.txt" or die $!; print $fh $_, $/ for @{ shift(@_) }; }

If you tell me, I'll forget.
If you show me, I'll remember.
if you involve me, I'll understand.
--- Author unknown to me

Log In?
Username:
Password:

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

    No recent polls found