Help for this page

Select Code to Download


  1. or download this
    sub count_instances {
    my $list = join ' ', shift();
    ...
    
    return $list =~ /\b$val\b/;
    }
    
  2. or download this
    sub count_instances {
    my $list = shift;
    ...
    
    return $list =~ /\b$val\b/;
    }