If I have the following dataframe:
Fruits
ONE_APPLE
TWO_BANANAS
THREE_ORANGES
FOUR_PINAPPLES
Is it possible to delete everything before the underscore, getting as a result:
Fruits
APPLE
BANANAS
ORANGES
PINAPPLES
There may be a pattern matching function but I haven't find the right one.
Thanks for your support.