Help for this page

Select Code to Download


  1. or download this
    my $evens = "";
    $evens .= substr($mixed_string, ($_ * 2), 1) foreach (0..length($mixed
    +_string) / 2);
    
    my $odds = "";
    $odds .= substr($mixed_string, ($_ * 2 + 1), 1) foreach (0..length($mi
    +xed_string) / 2 - 1);