I have a dataframe with object names. Some of the objects have special symbols like ® and ™
Example:
ProStand® Front Air Suspension
OnCo™ Connector
I've tried
db[grep("®",db$objectName), ] to find the special symbols but R isn't picking it up even though I see them in the dataframe.
This didn't work either
db$objectName[db$objectName == "ProStand® Front Air Suspension" ]<- "ProStand Front Air Suspension"
How do I find the special characters and remove them from the strings in my dataframe?