I want to batch replace dots with space without touching the dots between numbers.
Example:
Aero SWF.max V1.6.868
Should be:
Aero SWF max V1.6.868
MRT: remove dots, but not the dots between numbers
Moderators: Hacker, petermad, Stefan2, white
Search&Replace with RegEx:
Code: Select all
(\D)\.(\D)
Code: Select all
$1 $2