Help for this page

Select Code to Download


  1. or download this
    my @find = $line[$i] =~ /(?:\A|\t)(abc\d+)(?=\t|\z)/g;
    
  2. or download this
    my @find = $line[$i] =~ /(?:\A|\t)(abc\d+)(?=\t|\z)/
    my %count;
    $count{$_}++ for @find;
    
  3. or download this
    while ($line[i] =~ /(?:\A|\t)(abc\d+)(?=\t|\z)/g) {
        $count{$1}++;
    }