This code triggers the complaint below:
#!/usr/bin/perl
use strict;
use warnings;
my $s = "aaa bbb";
my $num_of_item = split(/\s+/, $s) ;
print $num_of_item;
When I run the code, Perl complains that “Use of implicit split to @_ is deprecated” .
I really have no “context” for the problem, so I expect you help to explain what’s wrong with
the code.
You are using
splitin scalar context, and in scalar context it splits into the@_array. Perl is warning you that you may have just clobbered @_. (See perldoc split for more information.)To get the number of fields, use this code:
or
Note: The three-argument form of split() is necessary because without specifying a limit, split would only split off one piece (one more than is needed in
the assignment).