I have a column in pandas data frame like below. Column name is ABC
ABC
Fuel
FUEL
Fuel_12_ab
Fuel_1
Lube
Lube_1
Lube_12_a
cat_Lube
Now I want to replace the values in this column using regex like below
ABC
Fuel
FUEL
Fuel
Fuel
Lube
Lube
Lube
cat_Lube
How can we do this type of string matching in pandas data frame.