Buscar..


Observaciones

PARA HACER: Añadir más contenidos.

Variables especiales en perl:

1. $_ : el espacio predeterminado de entrada y búsqueda de patrones.

Ejemplo 1:

my @array_variable = (1 2 3 4);
foreach (@array_variable){
    print $_."\n";    # $_ will get the value 1,2,3,4 in loop, if no other variable is supplied.
}

Ejemplo 2:

while (<FH>){
    chomp($_);    # $_ refers to the iterating lines in the loop.
}

Las siguientes funciones usan $_ como argumento predeterminado:

abs, alarm, chomp, chop, chr, chroot, cos, defined, eval,
evalbytes, exp, fc, glob, hex, int, lc, lcfirst, length, log,
lstat, mkdir, oct, ord, pos, print, printf, quotemeta, readlink,
readpipe, ref, require, reverse (in scalar context only), rmdir,
say, sin, split (for its second argument), sqrt, stat, study,
uc, ucfirst, unlink, unpack.

2. @_ : Esta matriz contiene los argumentos pasados ​​a la subrutina.

Ejemplo 1:

example_sub( $test1, $test2, $test3 );

sub example_sub {
    my ( $test1, $test2, $test3 ) = @_; 
}

Dentro de una subrutina, la matriz @_ contiene los argumentos pasados ​​a esa subrutina. Dentro de una subrutina, @_ es la matriz default para los operadores de matriz pop y shift .



Modified text is an extract of the original Stack Overflow Documentation
Licenciado bajo CC BY-SA 3.0
No afiliado a Stack Overflow