Move ^[(.*?)] to the end

Advanced Renamer forum
#1 : 29/11-17 21:37
vey95165
vey95165
Posts: 2
How Can I make this
"[TEST1] Example"
to become like this
"Example [TEST1]"
I want to move any [*] from the start to the end


29/11-17 21:37
#2 : 29/11-17 22:50
vey95165
vey95165
Posts: 2
Reply to #1:
Fixed
Replace
(^\[(.*?)\])(.+)
with
$3 $1


29/11-17 22:50
#3 : 30/11-17 08:37
Stefan
Stefan
Posts: 274
Reply to #2:

Bravo!






More correct syntax:

Replace
^(\[.+?\]) (.+)
with
$2 $1

[x] Use regular expressions

https://www.advancedrenamer.com/user_guide/metho d_replace


 


30/11-17 08:37 - edited 30/11-17 08:38