View Single Post
Old 11-26-2014, 12:18 PM   #2
theducks
Well trained by Cats
theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.
 
theducks's Avatar
 
Posts: 31,095
Karma: 60358908
Join Date: Aug 2009
Location: The Central Coast of California
Device: Kobo Libra2,Kobo Aura2v1, K4NT(Fixed: New Bat.), Galaxy Tab A
Quote:
Originally Posted by crich70 View Post
Is there a quick way to remove things like + from a book title? I converted some books from zips to epubs and they had + signs in between words in the titles.
Metadata editor:Bulk mode Search and replace (tab) REGEX mode

plus is a wild card, so it will need to be escaped (\+)

Foo+Bar+Title

Search
Code:
(.+?)\+(.+?)
replace:
Code:
\1 \2
there is a space there
Save this search


Rather than finding the perfect code, just remove 1 + at a time
run the replace
Exit S+R

Your title should now be: Foo Bar+Title

Find the titles that still have 1 or more +

Repeat
theducks is online now   Reply With Quote