Page 1 of 1

Swap text in file names

PostPosted: Tue Oct 20, 2020 12:13 am
by Admin
Q: Is there a way to swap text in BRU for file names ( example: change 'abc - def' to 'def - abc' ) ?

A: Yes, you can use Regex (1) match and replace.

Enable 'Simple'
(tick box in Regex (1) - this will enable simple regex which uses %1, %2 etc for matching)

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