La función chr() en Perl devuelve una string que representa un carácter cuyo punto de código Unicode es un número entero.
Sintaxis: chr(Num)
Parámetros:
Num : Es un valor entero unicode cuyo carácter correspondiente se devuelve.
Devuelve: una string que representa un carácter cuyo punto de código Unicode es un número entero.
Ejemplo 1:
Perl
#!/usr/bin/perl # Taking some unicode integer value as the parameter # of the chr() function and returning the corresponding # characters as output print chr(71), chr(101), chr(101), chr(107), chr(115); print "\n"; print chr(102), chr(111), chr(114); print "\n"; print chr(71), chr(101), chr(101), chr(107), chr(115);
Producción:
Geeks for Geeks
Ejemplo 2:
Perl
#!/usr/bin/perl # Initialising an array of some unicode integer values # and retrieving each value and printing their # corresponding characters my @Array = (71, 101, 101, 107, 115); foreach my $element (@Array) { print chr($element); }
Producción :
Geeks
Publicación traducida automáticamente
Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA