You should be able to get away with:
Search for: (.*?)\s(.*)
Replace with: \2 \1
But, if you accidentally select a title that doesn't have the date, you will mess it up.
So, safer is:
Search for: ([\d-]+)\w(.*)
Replace with: \2 \1
That looks like it won't mess with titles that don't have the date at the start. Unless you have something like "101 Ways to Write Regex in calibre".
And use title for both the Search and destination fields.
|