in reply to Help resolve Useless use of array element in void context warning.

You have comma where I think you want dot,

# $lengthandn=$line[4].',', $line[5]; # ^ $lengthandn = $line[4] . ',' . $line[5];

After Compline,
Zaxo

  • Comment on Re: Help resolve Useless use of array element in void context warning.
  • Download Code

Replies are listed 'Best First'.
Re: Re: Help resolve Useless use of array element in void context warning.
by talk2kvj (Novice) on May 26, 2004 at 20:06 UTC
    Thank you all for the help. It worked.
    http://www.perlmonks.org/index.pl?node_id=366807