Esto debería ser simple con suerte. Inicializo un conjunto vacío, hago un grep y coloco los resultados (si hay alguno) y luego verifico si está vacío. De esta manera:Perl ¿cómo comprobar si la matriz todavía está vacía?
my @match =();
@match = grep /$pattern/, @someOtherArray;
if (#match is empty#) {
#do something!
}
¿Cuál es la forma estándar de hacer esto?
Puede definir e inicializar @match en la misma línea - 'mi @match = grep etc.' –