View Single Post
Old 06-18-2014, 07:53 PM   #2
eschwartz
Ex-Helpdesk Junkie
eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.
 
eschwartz's Avatar
 
Posts: 19,421
Karma: 85400180
Join Date: Nov 2012
Location: The Beaten Path, USA, Roundworld, This Side of Infinity
Device: Kindle Touch fw5.3.7 (Wifi only)
use regex mode (and lookbehinds, which do NOT capture):

Code:
(?<=[a-z])I
Replace with "l"
This won't catch the illegitimate word "Iegitimate", though.

Hmm,

Code:
(?<![."]\s*)I
That should match any "I" that does NOT follow punctuation (even if there is an intervening space).

I'd still eyeball each edit first -- or scan each change using "See what's changed".

Last edited by eschwartz; 06-18-2014 at 08:27 PM.
eschwartz is offline   Reply With Quote