I'm trying to reorder a string in a dataframe for all of the values in a column.
I have values such as:
F123/1K
F234/2Q
F678/8W
and I want it to look like:
K1231
Q2342
W6788
Is there a way to change all the strings at once rather than the crude way of doing each individually in a loop?
Any assistance would be greatly appreciated.