Quote:
Originally Posted by pepak
Just get a good editor and run a correct regexp (regular expression search and replace):
1) For moving the punctuation inside the emphasis:
search = (</em>)([.,!?;:]+)
replace = $2$1
2) For moving the punctuation outside the emphasis:
search = ([.,!?;:]+)(</em>)
replace = $2$1
|
I'm guessing Notepad++ would do the trick? this seems far too advanced for Wordpad.