#1 : 11/08-23 19:08 Caravan Smith
Posts: 3
|
Hi
Can Change last word to first ? Need example? Thanks |
#2 : 12/08-23 09:12 Styb
Posts: 117
|
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. |