I have a data frame. One of the columns has values like:
WIND WINDS HIGH WIND etc
among the other values. Now
You can just subset the original column for these values by using grepl and replace
df$col1[grepl("WIND",df$col1)]<-"WIND"