r remove specific string in dataframe code example Example: delete all rows that contain a string in R library(dplyr) df %>% filter(!grepl('REVERSE', Name))