perl | longitud() función

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.

Publicación traducida automáticamente

Artículo escrito por Code_Mech y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *