Help for this page

Select Code to Download


  1. or download this
    my $string = "uno abc dos";
    my @a = split /abc/, $string;
    $string =~ /(abc)/;
    ...some use of $1...