Importing Tags
I have books that have the following naming structure and want to be able to import with the tag. I have tried and cannot get it to work.
<Title> - <Author> - <Tag(s)> - <series>
I have tried
(?P<title>.+) - (?P<author>[^_]+) - (?P<tags>.+) - (?P<series>[^_]+)
but it will still not import the tags. Any suggestions?
|