Moved 3rd word to the end

Bulk Rename Utility How-To's

Moved 3rd word to the end

Postby shmellyman » Wed Mar 29, 2023 12:03 pm

I just simply want to move the 3rd word to the end of a filename. These filenames have a random amount of words but I would like to always move the 3rd word to the end.
so: "word1 word2 word3 word4 word5" would be "word1 word2 word4 word5 word3"

also, just in case, I would also like to know how to move the fourth word to the end of the filename too. Thanks.
shmellyman
 
Posts: 9
Joined: Thu May 06, 2021 9:13 am

Re: Moved 3rd word to the end

Postby Admin » Thu Mar 30, 2023 1:16 am

Try this:

RegEx (1)
Simple tick -> enabled
Match: %1 %2 %3 %4
Replace: %1 %2 %4 %3

To move 3rd word to last.
Admin
Site Admin
 
Posts: 2354
Joined: Tue Mar 08, 2005 8:39 pm

Re: Moved 3rd word to the end

Postby RanaVerde » Sun May 14, 2023 8:40 pm

Well This info help me too!

I want to add a under[_] line after each 2nd word and thanks to this I could do it! :D

RegX

I used Match = %1 %2 %3

Replace = %1 %2_%3

and check the Simple option

Many Thanks !! :D :D
RanaVerde
 
Posts: 2
Joined: Sun May 14, 2023 8:29 pm


Return to How-To