Find and then Add

Advanced Renamer forum
#1 : 12/06-21 05:52
Larson Randle
Larson Randle
Posts: 4
I have a bunch of files where the characters "GIO#" and "SZ#" are in the filenames. How can i grab these sections and add them to the end of the filename.

Example:
Test GIO234 hi.mp4 to Test hi GIO234.mp4
SZ123 test file.mp4 to test file SZ123.mp4


12/06-21 05:52
#2 : 12/06-21 13:27
David Lee
David Lee
Posts: 1125
Try...

Replace: (GIO[^ ]*|SZ[^ ]*) ?(.*)
with: \2 \1
Use regular expressions


12/06-21 13:27