Quote:
Originally Posted by mzmm
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
but yes, some examples of exactly want to match would help, it's a little unclear
|
Yes, I forgot some things, like the part where lookbehinds need to look
behind.
Find:
Code:
(?<![.!?])(?<=[ ])([A-Z])(?=[a-z]+)
Replace.

Keep in mind that \E -- end of modifier's action -- is not strictly necessary if the entire replacement is being flagged as lowercase:
This time I actually checked in Sigil.
You lost a space. Also, you imitated my mistake of offering an uppercasing solution (for letters that are already uppercase

) instead of lowercasing. I blame my dental surgery, what's your excuse?

(You can blame it on me, I did trick you.

)