View Single Post
Old 10-12-2012, 01:43 PM   #9
theducks
Well trained by Cats
theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.
 
theducks's Avatar
 
Posts: 31,124
Karma: 60406498
Join Date: Aug 2009
Location: The Central Coast of California
Device: Kobo Libra2,Kobo Aura2v1, K4NT(Fixed: New Bat.), Galaxy Tab A
@DrC

you just need to write a better set of REGEX terms

Quote:
Example:
Original sentence : "This, THIS and this."
Search string : "this"
Replacement string: "these"
Replaced sentence: "these, these and these."
Expected sentence: "These, THESE, and these."
Here is a start:
Code:
(t|T)his
\1hese
will get the lower/mixed case correct
theducks is offline   Reply With Quote