in reply to Re: Regex to add space after punctuation sign
in thread Regex to add space after punctuation sign

Hmm.. Just tried:
$_ = "1.2.a.b"; s/(?!\d[.,]\d)([^\w\s])(?!\s)/$1 /g; print;
Prints "1. 2. a. b"

--dda