View Single Post
Old 05-17-2011, 02:58 AM   #4
clonetom
Junior Member
clonetom began at the beginning.
 
clonetom's Avatar
 
Posts: 3
Karma: 10
Join Date: May 2011
Device: HP TM2
I am adding files from another manager, which renames files to "title"-"author"-"index number"-"ISBN" (with "-" as delimiter).

(?P<title>.+)-(?P<author>[^_]+)-(?P<dummy>.+)-(?P<isbn>.+)

Since Calibre has no use for "index number", I just use a 'dummy' instead, so that I can add "title", "author" and "ISBN"... works fine for so far!

So in your case you could try:

(?P<dummy>.+)-(?P<title>.+)-(?P<author>[^_]+)

Good luck and please share if it works!

tom
clonetom is offline   Reply With Quote