Quote:
Originally Posted by ewphoenix123
This would replace the last letter of every found word aswell, I tend to make that mistake and have to start from scratch. :P
The proper regex for the operation would be something like:
Find: ([a-z])</span></p>\s+ <p><span class="font10">
Replace: \1 (\1single space character)
Find: ([a-z]),</span></p>\s+ <p><span class="font10">
Replace: \1, (\1,single space character)
Find: ([a-z])-</span></p>\s+ <p><span class="font10">
Replace: \1 (\1)
<p><span class="font10"> has to be replaced by the ones used in your file.
|
Been there and made that mistake often enough. I should have double checked instead of typing by memory.
Regards,
David