Regexp#===() : ===() es un método de clase Regexp que compara la igualdad de dos expresiones regulares.
Sintaxis: Regexp.===()
Parámetro: valores Regexp
Devuelve: verdadero: si dos expresiones regulares tienen igualdad, de lo contrario, devuelve falso
Ejemplo 1 :
# Ruby code for Regexp.===() method # declaring Regexp value reg_a = /a/ # declaring Regexp value reg_b = /geeks/ # declaring Regexp value reg_c = /a/ # === method puts "Regexp === form : #{reg_a === reg_b}\n\n" puts "Regexp === form : #{reg_b === reg_c}\n\n" puts "Regexp === form : #{reg_c === reg_a}\n\n"
Producción :
Regexp === form : false Regexp === form : false Regexp === form : false
Ejemplo #2:
# Ruby code for Regexp.===() method # declaring Regexp value reg_a = /geeks/ # declaring Regexp value reg_b = /problem/ # declaring Regexp value reg_c = /code/ # === method puts "Regexp === form : #{reg_a === reg_b}\n\n" puts "Regexp === form : #{reg_b === reg_b}\n\n" puts "Regexp === form : #{reg_c === reg_a}\n\n"
Producción :
Regexp === form : false Regexp === form : false Regexp === 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