Help for this page

Select Code to Download


  1. or download this
      $count = split ' ', $string
  2. or download this
      @_ = split ' ', $string; $count = @_;
  3. or download this
      $count = @tmp = split ' ', $string
  4. or download this
      $ref = [ split ' ', $string ]