Get your own website Result Size: 625 x 565
x
 
str <- "Hello World!"
grepl("H", str)
grepl("Hello", str)
grepl("X", str)
[1] TRUE
[1] TRUE
[1] FALSE