http://qs321.pair.com?node_id=649198


in reply to avoid uninitialized values for $_

If you just want to avoid the warnings, you can always inhibit them with no warnings. See perllexwarn.
use warnings; .. # in the block no warnings qw(uninitialized);
Are you aware that skipblanks() does not iterate over @data? The following code should do the same as your function:
sub skipblanks { # my @data = @_; # you probably want $x = shift || 0; my $x = shift; # foreach $x (@data) { if ($x) { $x =~ s/,/\./g; } return $x; # } }

Replies are listed 'Best First'.
Re^2: avoid uninitialized values for $_
by GertMT (Hermit) on Nov 06, 2007 at 12:51 UTC
    thanks for your reply,
    Very good for pointing me to that guess I shoud have used 'next' or something like that. With your proposed improved skipblanks() it seems to work better! I keep the other suggestion 'no warnings' as a reserve. Thanks,
    Gert