Ruby | String ascii_only? Método

ascii_solo? es un método de clase String en Ruby que se usa para verificar la string que solo tiene caracteres ASCII.

Sintaxis: str.ascii_only?

Parámetros: Aquí str es la string a verificar.

Devuelve: Verdadero para una string que solo tiene caracteres ASCII; de lo contrario, devuelve falso.

Ejemplo 1:

#ruby 2.3.1 
     
# Ruby program to demonstrate
# the ascii_only? method
     
# Taking a string and
# using the method
puts "95ruby2364127".ascii_only?
  
puts "\u{1234}".ascii_only?

Producción:

true
false

Ejemplo 2:

#ruby 2.3.1 
     
# Ruby program to demonstrate
# the ascii_only? method
     
# Taking a string and
# using the method
puts "STRING".ascii_only?
  
puts "\u{7894}".force_encoding("UTF-8").ascii_only?

Producción:

true
false

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

Deja una respuesta

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