How to remove some particular word from excel row

How to remove some particular word from excel cell. Suppose I have something “Uipath is best RPA tool”. Here I need to remove “Uipath” every time when I am reading from other excel and pasting in another excel file

Retrieve the value from another excel cell and before pasting, use string manipulations as

string = string.Replace("Uipath ").trim will give you the remaining string and then you can paste it in the new excel @khan

Thanks Hareesh