Rather than just selecting "(?P<title>.+)" which just assigns the Title and leaves Author as Unknown, try using "(?P<title>.+) - (?P<author>[^_]+)" which will set both Title AND Author.
You can test it by putting a file name in the field labelled "File n<"ame" and pressing the Test button.
|