powered by
ignore.case(string)
fixed
perl
pattern <- "a.b" strings <- c("ABB", "aaB", "aab") str_detect(strings, pattern) str_detect(strings, ignore.case(pattern))
Run the code above in your browser using DataLab