Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re^3: Unable to print the contents of an array reference passed from the main pgm to the flat file

by Marshall (Canon)
on Aug 24, 2010 at 06:07 UTC ( [id://856858]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Unable to print the contents of an array reference passed from the main pgm to the flat file
in thread Unable to print the contents of an array reference passed from the main pgm to the flat file

I would suggest adding some print Dumper statements in to make sure that you have the kind of thing that you think that you have...

Running some simple test should provide some light on what data this pkoutFile sub is really getting. I simplified your statement to input the sub's input args - avoid using indicies unless you have to - Perl is designed so they aren't needed nearly as often as in other languages.

#!/usr/bin/perl -w use warnings; use Data::Dumper; pkoutFile($OUTFP, ';:=~',"301","WPSPD", $valDate1, "SPREAD", \@retArray); sub pkoutFile { my( $outFH, $delims, $branchID, $sourceSystem, $valDateY4MD, $rateType, $rowsHdl, $colNamesHdl)= @_; print Dumper \$rowsHdl; #$colNamesHdl is undefined in this case #so, it appears that this following code is executed $k = $$rowsHdl[0]; # $rowsHdl->[0] print Dumper \$k; @ff = keys(%$k); print Dumper \@ff; }
update: I noticed that for example the k1 value has a calculation done on it, but is never printed. With further looking, if the intent of the regex you want is to remove leading and trailing spaces, I would suggest this:
foreach ($delims, $branchID, $valDateY4MD, $sourceSystem, $rateType) { s/^\s+//; #remove leading spaces s/\s+$//; #remove trailing spaces }
This sets $_ to each of the scalar variables in turn and then runs 2 simple and fast regex'es that do not require the /g switch. In this case $_ is an alias for the variable (like $delims) and changes in the loop are reflected in changes to the actual variable.
  • Comment on Re^3: Unable to print the contents of an array reference passed from the main pgm to the flat file
  • Select or Download Code

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (3)
As of 2024-04-25 09:25 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found