Ruby | Función Regexp fixed_encoding?()

Regexp#fixed_encoding?() : fixed_encoding?() es un método de clase Regexp que verifica si la expresión regular es aplicable a una string con cualquier codificación compatible con ASCII.

Sintaxis: Regexp.force_encoding??()

Parámetro: valores Regexp

Devuelve: verdadero: si el rxp es aplicable a una string con cualquier codificación compatible con ASCII; de lo contrario, devuelve falso

Ejemplo 1 :

# Ruby code for Regexp.fixed_encoding?() method
  
# declaring Regexp value
reg_a = /a/
  
# declaring Regexp value
reg_b = /geeks/
  
# declaring Regexp value
reg_c = /a/
  
  
#  fixed_encoding? method
puts "Regexp fixed_encoding? form : #{reg_a.fixed_encoding?}\n\n"
  
puts "Regexp fixed_encoding? form : #{reg_b.fixed_encoding?}\n\n"
  
puts "Regexp fixed_encoding? form : #{reg_c.fixed_encoding?}\n\n"

Producción :

Regexp fixed_encoding? form : false

Regexp fixed_encoding? form : false

Regexp fixed_encoding? form : false

Ejemplo #2:

# Ruby code for Regexp.fixed_encoding?() method
  
# declaring Regexp value
reg_a = /geeks/
  
# declaring Regexp value
reg_b = /problem/
  
# declaring Regexp value
reg_c = /code/
  
  
#  fixed_encoding? method
puts "Regexp fixed_encoding? form : #{reg_a.fixed_encoding?}\n\n"
  
puts "Regexp fixed_encoding? form : #{reg_b.fixed_encoding?}\n\n"
  
puts "Regexp fixed_encoding? form : #{reg_c.fixed_encoding?}\n\n"

Producción :

Regexp fixed_encoding? form : false

Regexp fixed_encoding? form : false

Regexp fixed_encoding? form : false

Publicación traducida automáticamente

Artículo escrito por mayank5326 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 *