Quote:
Originally Posted by theducks
No reasonable way to determine which words belong together with (spaces) and which are new fields.
|
There is one method, but I don't have the skills to write the simple regex required. Essentially it would be something like (this doesn't work, but I'm sure someone can correct it)
Code:
(?P<isbn>.+) ? (?P<title>[^_]+)
the important part is the isbn, don't really care what garbage is in the title field because we will write over it when fetching metadata. Once the isbn field is set, download metadata and have overwrite Author and Title and most everything checked in the metadata configuration window.