in reply to Counting the number of items returned by split without using a named array
$_ = 'Hi There! x'; my $entries = () = /\S+/g; print $entries; [download]