Quote:
Originally Posted by Gunnerp245
I would like to change the capitalization a particular phrase across a book e.g. chapter one to Chapter One. I can detect the instances using (\D+) (\D+) and know the replacement would be \1 \2, but not how to change the capitalization.
|
Quote:
Originally Posted by Doitsu
A quick and dirty solution would be:
Find: (chapter) ([[:lower:]]+)
Replace: \u\1 \u\2
This requires Sigil 0.5.3 (or higher).
|
@Doitsu - Left out key information initially, I am attempting this is calibre 'search and replace'.

.