Help for this page

Select Code to Download


  1. or download this
    my @chunks = map qr{(?=.*$_)}, (
       qr{\d},
    ...
    }
    my $regex = = join '|', @transformed;
    $regex = qr{^.*(?=.{10,})(?:$regex)};
    
  2. or download this
    my $count = 0;
    for (@chunks) {
       $count++ if $str =~ $_;
    }