wikiparsel.pl
By: wikiparsel.pl | Date: Jun 1 2020 16:02 | Format: Perl | Expires: never | Size: 466 B | Hits: 695
- use strict;
- use warnings;
- my $most_counts = 0;
- my $most_line;
- while (my $line = <$in_fh>) {
- next unless $line =~ /\S+\sen\s(\S+)\s\S+\s/;
- if ($most_counts < $1) {
- $most_counts = $1;
- $most_line = $line;
- }
- }
Latest pastes
1 hours ago
11 hours ago
1 days ago
2 days ago
2 days ago