I would like to exclude lines containing a string \"REVERSE\", but my lines do not match exactly with the word, just contain it.
My input data frame:
You can use stri_detect_fixed function from stringi package
stringi
stri_detect_fixed(c("REVERSE223","GENJJS"),"REVERSE") [1] TRUE FALSE