Hi,
I have a dataset which has strings in the format below
ABCDE F GHIDJ
AB C DEFGHIJ
ABCD E FGH I
I would like to find a way to only remove the character that is by itself.
ABCDE F GHIDJ --> ABCDE GHIDJ
AB C DEFGHIJ --> AB DEFGHIJ
ABCD E FGH I--> ABCD FGH
I tried used the RegEx tool however am not really sure how to use it.
Thanks for the help in advance!