in reply to Re^2: Nested Loop Problems
in thread Nested Loop Problems
About variables and context, see pelrdata
$list=split ...: 'split' in scalar context because '$list' is a scalar value (split: In scalar context, returns the number of fields found.)
@list=split ...: 'split' in list context and returns a list because '@list' expects a list value.
|
|---|