Help for this page

Select Code to Download


  1. or download this
    my $string = 'see:how:they:code';
    my($zeroth, $first, $remainder) = split ':', $string, 3;
    print $zeroth, "\n",    # see
          $first, "\n",     # how
          $remainder, "\n"; # they:code
    
  2. or download this
    my($zeroth, $first, $second) = (split ':', $string)[0..2];
    print $zeroth, "\n",   # see
          $first, "\n",    # how
          $second, "\n";   # they