I have an excel file with 2 columns. I want to remove some parts of the string in column 2 (C2). But the problem is, as the file is huge I don’t know the exact name that I want to remove; however I know which parts I want to keep. The other issue is the part I want to keep is only one letter which they will be in the part I want to remove too. The following is an example:
The original part is like:(C1 and C2 are columns name)
C1 C2
T1 L_1>K>J>P000RTK>P
T2 K>L>L>PY0BDJS
T3 P>P>P000FTKL>L
I need the results like: I only want to keep the part with one letter and I
want to remove the rest.
C1 C2
T1 L_1>K>J>P
T2 K>L>L
T3 P>P>L
Thanks