I normally work in millimeters on a Mach3 CNC mill. So my program looks like this:

Code:
G0 X123.456 (rapid move to X=123.456mm)
Problem is, now I need to generate a program for a Syntec machine that works in thousandths of a millimeter. So I need my program to look like this:

Code:
G0 X123456 (rapid move to 123456/1000 = 123.456mm)
I can make CamBam output exactly 3 decimal places after the point by tweaking the post processor:

Code:
<NumberFormat>0.000</NumberFormat>
But how do I get rid of the decimal point, short of doing "Search and replace" in a text editor?