I started with:
Search field: title
Search for:
Code:
.*- (\d+) (\w{3}).*
Replace with: \2 \1
Destination field: pubdate
And that worked (though I didn't try all months). Then I thought to try:
Search field: title
Search for:
Replace with: \2 \1
Destination field: pubdate
And it worked as well.
But, the simplest is:
Search field: title
Search for:
Replace with: \1
Destination field: pubdate
None of these would handle a second dash in the title. And it will fail if the month is misspelt.