La función length() en Perl encuentra la longitud (número de caracteres) de una string dada, o $_ si no se especifica.
Sintaxis: longitud (VAR)
Parámetro:
VAR: String o grupo de strings cuya longitud se quiere calcular
Retorno:
Devuelve el tamaño de la string.
Ejemplo 1:
#!/usr/bin/perl # String whose length is to be calculated $orignal_string = "Geeks for Geeks"; # Function to calculate length $string_len = length($orignal_string); # Printing the Length print "Length of String is: $string_len";
Producción:
Length of String is: 15
Ejemplo 2:
#!/usr/bin/perl # String whose length is to be calculated $orignal_string = "123456 is Geeks Code"; # Function to calculate length $string_len = length($orignal_string); # Printing the Length print "Length of String is: $string_len";
Producción:
Length of String is: 20
Nota: se utiliza el contexto escalar en una array o hash si se va a determinar el tamaño correspondiente.