$count = split ' ', $string #### @_ = split ' ', $string; $count = @_; #### $count = @tmp = split ' ', $string #### $ref = [ split ' ', $string ]