Regular Expression Help?

Hello,

Im having difficult rearranging some text in a filename. I have thousands of files named this way

NOC ####-##### Incident Letter LastName ^RSK######.doc

what I wanted is

NOC ####-##### LastName Incident Letter ^RSK######.doc

How would I do this?

In regular expression mode, something like:

Old name: (.) Incident Letter (.) ^RSK(.*)
New name: \1 \2 Incident Letter ^RSK\3

(untested, but should get you started).

thanks
works great