Quote:
Originally Posted by flameproof
Please let me add one more common problem: wrong hyphen (probably from the PDF)
Search: (\w)-(\w)
replace with: \1\2
How can I make it case sensitive? I like to correct 'ele-phant' but not 'John-Bob' ?
|
I think a brute force approach would be
([a-z]\w)-(\w)