Quote:
Originally Posted by yamusing
I've got books with titles for example "publisher1 - book title", "publisher2 - book title", "publisher3 - book title" etc. already imported into calibre. How would I go about using the Search and Replace function to search for all the characters before the "-" and then move them over to the publisher field?
|
I do this in 2 steps: 1) copies to new home. 2) removes from original home
Bulk mode S&R both use the same REGEX search
search Title:
(.+?)\s-\s(.+?)
1)
Replace Publisher:
\1
2)
Replace Title:
\2