Help for this page

Select Code to Download


  1. or download this
    my $ham = "spam\tspam\tspam\tyam\tclam";
    my $word    = qr{[^\t]+};
    ...
                            \z                 # and then it's the end of 
    +the string
                           }xms);
    print join("\n", '**', @jam, '**', '');
    
  2. or download this
    my @jam = ( spit "\t", $ham )[2,3];