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 this function if it's multiple string df[!grepl("REVERSE|GENJJS", df$Name),]
df[!grepl("REVERSE|GENJJS", df$Name),]