Quote:
Originally Posted by unboggling
Preferences/SaveToDisk, Save metadata in OPF file, was checked. When I turned it off, you're right, that previously posted regex didn't work.
|
<grin> - It's always the details that trip you up.
I know you've settled on using ID in the folder, but I wondered why the regexes you posted didn't work, so I tested this one from your list:
Code:
(?P<author>[^_]+?) - ((?P<series>.*) (?P<series_index>[0-9]*) - )?(?P<title>.+)( - \(\d+\))
It parsed this filename just fine for Title, Series, Series Index and Author, and dropped the parenthetical ID:
Quote:
Author is me - Series is me 6 - Title is me - (34).txt
|