Do you wish to change the pattern which is applied during the import process?
If so it is in Preferences -> Adding Books
The current pattern is :
(?P<title>.+) - (?P<author>[^_]+)
You are looking for :
(?P<author>[^_]+) - (?P<title>.+)
There's also an option to swap the first/last names around, if that's needed.
|