Quote:
Originally Posted by eschwartz
...
Code:
(?![.!?])(?=[ ])([A-Z])[a-z]+
|
is that working for you in sigil? my PCRE editor doesn't match
i'd probably use something like
find
Code:
(?<![.!?])( [A-Z])(?=[a-z])
replace
Quote:
Originally Posted by Leonatus
I want to replace by lower case characters some words that have been written, following the older german grammar, beginning with upper case letters, even when they are in the middle of a sentence, such as "Du", "Dich", "Ihr", "Euch".
...
|
but yes, some examples of exactly want to match would help, it's a little unclear