Hi i need to replace a string,'Manik+/India/IAM/" from the data in my column ID of data frame df. I need to replace this string with blank, i.e. nothing.
df['ID'] = df['ID'].str.replace('Manik+/India/IAM/', '') doesnt work because i believe the thing i want to replace has both letters and +/.
what is the best way to achieve this?