Description:
The "Remove block numbers" function is designed to automatically delete all block (line) numbers N in a CNC program (NC code).
This is useful when you need to simplify the code, remove unnecessary line labels, make the program more compact, or prepare it for import into systems where block numbers are not used.
Before:
N10 G00 X0 Y0 N20 G01 X50 F200 N30 M30
After:
G00 X0 Y0 G01 X50 F200 M30
IF ... GOTO N100 or WHILE ... GOTO), removing block numbers will break the program's execution logic.
Before applying, make sure there are no such references in the code.