View Single Post
Old 12-13-2022, 09:11 AM   #2
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 79,796
Karma: 146391129
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Quote:
Originally Posted by skil-phil View Post
I am trying to clean up a book that has a lot of '?' in the middle of a word.
Gra?ham similari?ties and so on.
I have looked and tried what I think might work with no success. I either get an error or a lot of extraneous stuff is selected.
Any ideas.
Thanks
Phil
In Calibre's editor, you can use the following to find a ? in between two lowercase letters.

Search
Code:
([a-z])\?([a-z])
Replace
Code:
\1\2
To find where the ? is after an uppercase character

Search
Code:
([A-Z])\?([a-z])
and use the same replace.
JSWolf is offline   Reply With Quote