La función chr en Ruby devuelve la string que contiene el carácter representado por el valor de int según la codificación.
Sintaxis : string.chr([codificación])
Parámetro : La función toma el valor entero cuya codificación se desea realizar. Se necesita una codificación de parámetros no obligatorios si la codificación se va a realizar de acuerdo con eso.
Valor de retorno : la función devuelve carácter.
Ejemplo 1:
# Ruby Program of Integer chr function # Initializing the numbers num1 = 65 num2 = 66 num3 = 97 num4 = 245 # Prints the chr # after encoding puts num1.chr puts num2.chr puts num3.chr puts num4.chr(Encoding::UTF_8)
Salida :
A B a õ
Ejemplo #2:
# Ruby Program of Integer chr function # Initializing the numbers num1 = 119 num2 = 68 num3 = 89 num4 = 255 # Prints the chr # after encoding puts num1.chr puts num2.chr(Encoding::UTF_8) puts num3.chr puts num4.chr(Encoding::UTF_8)
Salida :
w D Y ÿ