grepl()
La función en R Language se usa para devolver el valor True si el patrón especificado se encuentra en el vector y false si no se encuentra.
Sintaxis: grepl(patrón, string, ignore.case=FALSE)
Parámetros:
patrón: expresiones regulares
string de patrón: vector de caracteres que se buscará
ignorar.caso: si se ignorarán las mayúsculas y minúsculas en la búsqueda. Aquí ignore.case es un parámetro opcional ya que está configurado en FALSO de forma predeterminada.
Ejemplo 1:
# R program to illustrate # grepl function # Initializing a character vector str <- c("GFG", "gfg", "Geek", "Geeks") # Calling the grepl() function to # find whether any instance(s) of # ‘GF’ and 'G' are present in the string grepl('GF', str, ignore.case ="True") grepl('G', str, ignore.case ="True")
Producción:
[1] TRUE TRUE FALSE FALSE [1] TRUE TRUE TRUE TRUE
Ejemplo 2:
# R program to illustrate # grepl function # Initializing a character vector str <- c("GFG", "gfg", "Geek", "Geeks") # Calling the grepl() function to # find whether any instance(s) of # ‘gfg’ and 'Geek' are present in the string grepl('gfg', str) grepl('Geek', str)
Producción:
[1] FALSE TRUE FALSE FALSE [1] FALSE FALSE TRUE TRUE
Publicación traducida automáticamente
Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA