Usando perl y regular expressions cómo puedo saber el numero de ocurrencias de un archivo y una lista?
Saber numero de ocurrencias en archivo y lista
Iniciado por
Mario Garcia
, ago 06 2014 04:57
#1 AUTOR PREGUNTA
Preguntas Similares
Esto también te interesa!
#2
Publicado 07 agosto 2014 - 18:20
Es una solucion un poco larga pero funciona bien:
use strict; use warnings; my @regexes = ( qr/b/, qr/a/, qr/foo/, qr/quux/, ); my %matches = map { $_ => 0 } @regexes; while (my $line = <DATA>) { for my $regex (@regexes) { next unless $line =~ /$regex/; $matches{$regex}++; } } for my $regex (@regexes) { print "$regex matched $matches{$regex} times\n"; } __DATA__ foo bar baz
#4 AUTOR PREGUNTA
Publicado 07 agosto 2014 - 18:44
Implementado Joel, gracias