Help for this page

Select Code to Download


  1. or download this
    (my($token, $sep), $string) = split /PATTERN/, $string, 2;
    
  2. or download this
    my($token, @sep) = split /PATTERN/, $string, 2;
    $string = pop @sep;