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;
Boris
  • Comment on Re: Counting the number of items returned by split without using a named array
  • Download Code