I am using the following code to replace string characters with empty strings:
description_clean_df$description_clean <- gsub("amp", "", description_clean_df$description_clean)
How can I have this as exact match? E.g. I want to replace exactly "amp", but not other words which contain "amp", such as the word "example"? How can I do that?