Suppose I have a dataframe which looks like this:
_id name features
0 574 Test1 Reference:5dft55
1 57 Test2 Reference:5sh85
2 52 Test3 675
Is it possible to dynamically search each series within the dataframe and check whether a series contains the word Reference:
and if it does it should remove that so that the output can look like the dataframe below:
Expected Ouput:
_id name features
0 574 Test1 5dft55
1 57 Test2 5sh85
2 52 Test3 675