I am trying to use a grep
formula to search for at least one of the following terms in quotations in the code below in df$AllPrograms
.
grep("Service & Product Provider (Partner;ACT)" | "Buildings (Prospect;INA)", df$AllPrograms)
This isn't working and I suspect it is because grep is not interpret ting the &
;
and ()
as operators rather than characters.