Help for this page

Select Code to Download


  1. or download this
    sub includes {
      my($in, $test) = @_;
      my $ins = join '', sort split//, $in;
      my $ts = join '.*', sort split//, $test;
      return $ins =~ /$ts/ || 0
    }
    
  2. or download this
    sub includes {
      my($in, $test) = @_;
      return (length $test == grep $test=~s/$_//, $in=~/./g) ||0;
    }