Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
       @list = grep {!/\Q$a/} @list;
    }
    print $w;
    
  2. or download this
    use strict;
    use warnings;
    ...
    my $w="kandabbbc";
    $w=~s/$re//g;
    print $w;