The data.table package has the operator %like%, which is super handy for partial string matching:
"system with blue screen" %in% "blue"
> FALSE
"system with blue screen" %like% "blue"
> TRUE
The data.table package has the operator %like%, which is super handy for partial string matching:
"system with blue screen" %in% "blue"
> FALSE
"system with blue screen" %like% "blue"
> TRUE