Quote:
Originally Posted by asrrin29
Here is an example filename:
Code:
[Black Fleet Crisis] - 01 - Before The Storm (Michael Mcdowell).epub
I've altered default regex a little bit to get my authors to parse properly and this is what I currently use:
Code:
(?P<title>.+) \((?P<author>[^_]+)\)
What I need is a way to tell Calibre to ignore the series and series volume info, and only parse the title and author.
|
Code:
[Black Fleet Crisis] - 01 - Before The Storm (Michael Mcdowell).epub
Code:
.* - (?P<title>.+) \((?P<author>.+)\)
.* would eat up all the characters up to the last ' - ', because * quantifier is greedy
Have a look at this thread
https://www.mobileread.com/forums/showthread.php?t=99258