encoding es un método de clase String en Ruby que se usa para devolver el objeto Encoding que representa la codificación del objeto.
Sintaxis: str.encoding
Parámetros: Aquí, str es la string dada.
Devuelve: un objeto de codificación.
Ejemplo 1:
# Ruby program to demonstrate # the encoding method # Taking a string and # using the method puts "R\xC3\xA9sum\xC3\xA9".encoding puts "Ruby\n\n".encoding
Producción:
UTF-8 UTF-8
Ejemplo 2:
# Ruby program to demonstrate # the encoding method # Taking a string and # using the method puts "Sample".encoding puts "Input\n\n".encoding
Producción:
UTF-8 UTF-8
Publicación traducida automáticamente
Artículo escrito por Kirti_Mangal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA