MRT: remove dots, but not the dots between numbers

English support forum

Moderators: Hacker, petermad, Stefan2, white

Post Reply
HAL 9000
Senior Member
Senior Member
Posts: 384
Joined: 2007-09-10, 13:05 UTC

MRT: remove dots, but not the dots between numbers

Post by *HAL 9000 »

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
User avatar
ZoSTeR
Power Member
Power Member
Posts: 1052
Joined: 2004-07-29, 11:00 UTC

Post by *ZoSTeR »

Search&Replace with RegEx:

Code: Select all

(\D)\.(\D)

Code: Select all

$1 $2
HAL 9000
Senior Member
Senior Member
Posts: 384
Joined: 2007-09-10, 13:05 UTC

Post by *HAL 9000 »

Thank you very much ZoSTeR.
Post Reply