I would like to reverse the order of words

Post any Bulk Rename Utility support requirements here. Open to all registered users.

I would like to reverse the order of words

Postby ifrid89 » Thu Jun 22, 2023 11:53 am

Hi,
I would like to change order of words in a file name with a special character separator ("-" with no space before and after is the separator)

Here's an example:
XXXXXXXX-YYYYYYYY-ZZZZZZZZ

I need it to be:
YYYYYYYY-XXXXXXXX-ZZZZZZZZ

Could someone please help me?

Thanks!
ifrid89
 
Posts: 2
Joined: Thu Jun 22, 2023 11:47 am

Re: I would like to reverse the order of words

Postby Admin » Fri Jun 23, 2023 7:33 am

RegEx(1) with Simple flag enabled then:

Match: %1-%2-%3
Replace: %2-%1-%3
Admin
Site Admin
 
Posts: 2354
Joined: Tue Mar 08, 2005 8:39 pm

Re: I would like to reverse the order of words

Postby ifrid89 » Mon Jun 26, 2023 2:06 pm

Admin wrote:RegEx(1) with Simple flag enabled then:

Match: %1-%2-%3
Replace: %2-%1-%3



Thank you very much!
ifrid89
 
Posts: 2
Joined: Thu Jun 22, 2023 11:47 am

Re: I would like to reverse the order of words

Postby dec » Tue Jun 27, 2023 12:18 am

Admin wrote:RegEx(1) with Simple flag enabled then:

Match: %1-%2-%3
Replace: %2-%1-%3


i must try to remember/understand this syntax
dec
 
Posts: 67
Joined: Thu Oct 14, 2021 6:31 am


Return to BRU Support