I've searched a long time, but unfortunately, regex are really not for me...
I just want to replace all the non-alphanumerics except dot or comma between 2 digits (or plus) by a space.
Example : Welcome to RegExr v2.1 by gskinner.com, proudly hosted by Media Temple ! -98.7 3.141 .6180 9,000
became
Welcome to RegExr v2.1 by gskinner com proudly hosted by Media Temple 98.7 3.141 6180 9,000
I know that this can remove all non-alphanumerics : [^a-zA-Z0-9 ] but I just want to add the exception for dot or comma between 2 numbers (I've test on http://regexr.com/)
Thanks for your help ! ;)