in reply to Re: Regex to add space after punctuation signin thread Regex to add space after punctuation sign
$_ = "1.2.a.b"; s/(?!\d[.,]\d)([^\w\s])(?!\s)/$1 /g; print; [download]
--dda