Ruby | Función de coincidencia de expresiones regulares()

Regexp#match() : force_encoding?() es un método de clase Regexp que hace coincidir la expresión regular con la string y especifica la posición en la string para comenzar la búsqueda.

Sintaxis: Regexp.match()

Parámetro: valores Regexp

Retorno: expresión regular con la string después de hacerla coincidir.

Ejemplo 1 :

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

Producción :

Regexp match form : a

Regexp match form : geeks

Regexp match form : a

Ejemplo #2:

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

Producción :

Regexp match form : geeks

Regexp match form : 

Regexp match form : code

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 *