Help needed with import
hi i am trying to get this to work to import my books
(?P<author>.+) - (?P<series>[^_]+) - (?P<title>[^_]+)
this is the layout of all the books i have
B Buechter - [The Wanderer Trilogy 01] - Purpose (epub).epub
it is splitting the fields correctly but i cannot get it to look the same as if renamed from the internet my import is producing the library like this
Purpose (epub) - B Buechter - [The Wanderer Trilogy 01] [1].epub
and i need my import to look like
Purpose (epub) - B Buechter - The Wanderer Trilogy [1].epub
which is the standard after internet renaming i have tryed regex but i cant figure it out how to write it to get the output i need
any help would be highly appreciated
|