Change last word to first

Hi

Can Change last word to first ? Need example?


Thanks
Reply to #1:
Use the regular expression in Replace method:

For a 2-words filename
Replace: (.*) - (.*)
With: \2 - \1

For a 3-words filename
Replace: (.*) - (.*) - (.*)
With: \3 - \2 - \1

and so on.