http://www.perlmonks.org?node_id=1025950


in reply to Re^2: Creating a file by using perl
in thread Creating a file by using perl

Thanks a lot man, It's working fine. Just one more thing. Now, when I am printing out those lines, I need to use values from my array. I have a subroutine in which I am parsing values from a text file and the values are stored in an array, so can I just call a subroutine and use array reference to print out my text with the values from that array ? Because when I am doing that It's giving me this error

Global symbol "$one_ref" requires explicit package name at testfile.pl + line 12.

Replies are listed 'Best First'.
Re^4: Creating a file by using perl
by space_monk (Chaplain) on Mar 28, 2013 at 13:42 UTC

    You would have to show more of what you're trying to do. It's difficult to nearly impossible to work out where you're going wrong if you showing errors without the lines where they're occurring.

    From the error, it seems as though you haven't declared $one_ref in the main program or the method, whichever it happens to be. Somewhere you need a my ($one_ref);. But that's just a guess.

    Put an update at the end of the original question, with the code attached as it stands now. PerlMonks allows questions to change dynamically.

    A Monk aims to give answers to those who have none, and to learn from those who know more.