Code:
$ln=~ s/\.\s+/\. /g;
I would like to modify the code so it will not pad 'Mr. | Dr.' or really any periods which aren't the end of a sentence
(that may be a bit much). I realize that
Code:
if ($ln !~/[MD]r\./){$ln=~ s/\.\s+/\. /g;}