Originally Posted by PatNY
The default is to split authors on the word "and" which is causing havoc with the authors in my Calibre db. I saw the tweak to fix this, but it is a regex expression and I'm not exactly sure how to tweak it.
Here is the default:
authors_split_regex = '(?i),?\\s+(and|with)\\s+'
Do I simply remove the word "and" so it looks like this? ...
authors_split_regex = '(?i),?\\s+(|with)\\s+'
I know regex can be finicky and I don't want to break any other part of the expression by simply deleting the word.
--Pat
|