Ejemplo 1: str_detect regex r
x <- c("a.b.c.d", "aeb")
starts_with <- "a.b"
str_detect(x, paste0("^", starts_with))
#> [1] TRUE TRUE
str_detect(x, paste0("^\Q", starts_with, "\E"))
#> [1] TRUE FALSE
Ejemplo 2: str_detect regex r
str_detect("nXn", ".X.")
#> [1] FALSE
str_detect("nXn", regex(".X.", dotall = TRUE))
#> [1] TRUE
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)