Move id number to the left side
-
Hi Everyone,
I have example text file like this:
UJANG M.KOM,12345678901
UDIN,12345678902
MAMAT BINTI MUMUT,12345678909
ASEP BIN MAHFUD, S.H,12345678908
BUDI BIN MA’AD, S.E,12345678907I want to move all of id number of the right side to left side to be like this:
12345678901, UJANG M.KOM
12345678902, UDIN
12345678909, MAMAT BINTI MUMUT
12345678908, ASEP BIN MAHFUD, S.H
12345678907, BUDI BIN MA’AD, S.EPlease tell me the way to change like that
Thanks
-
Find:
(?-s)(.*),(\d+)$
Replace:${2}, ${1}
Search mode: Regular expression