Moving number to end of file name?

Hey guys,

Need some assistance moving the first 6 number in front of a file name to the end before the period, or even the first 8 characters to the end.

here is an example of what i have:

13 05 07 Re OG Distributions.pdf
13 05 08 Re Hazmat Quarterly Training Session.pdf

Need it to look like this:

Re OG Distributions 13 05 07.pdf
Re Hazmat Quarterly Training Session 13 05 08.pdf

Any help would be greatly appreciated. Thank you
:smiley:

Which Opus version do you need it to work with? (Still 9 or is the profile info out of date? Newer versions have some easier ways to do things, but I don't want to give something that won't work with what you have.)

Still on version 9.0 on a work computer.

can not upgrade right now

I don't have Opus 9 handy to test with but it will be something like a regular expression from

(.. .. ..) (.*)(\.[^.]+)

to

\2 \1\3

There are slightly better/cleaner ways to do it in newer versions, although that will work in them too (in fact I tested it with the Opus 12 beta). The main thing is it will not ensure it only matches numbers at the start, only three lots of two-character pairs.