Run »
str <- "Hello World!" grepl("H", str) grepl("Hello", str) grepl("X", str)
[1] TRUE
[1] TRUE
[1] FALSE