Quote:
Originally Posted by hanbalfrek
I'm trying to import books with author names with multiple periods in them, such as
George R. R. Martin - Game of Thrones
A. A. Attanasio - In Other Worlds
A. Bertram Chandler - All Laced Up
C. S. Friedman - The Wilding
and none of them come up correctly.
|
What regex are you using for import?
I use the following regex under
Preferences - Adding Books for importing books with the author first.
Code:
^((?P<author>([^\-_0-9]+)(?=\s*-\s*)(?!\s*-\s*[0-9.]+)|\b))(\s*-\s*)?((?P<series>[^0-9\-]+)(\s*-\s*)?(?P<series_index>[0-9.]+)\s*-\s*)?(?P<title>[^\-_0-9]+)
It works on the books you gave as an example.
Good Luck.