Good morning,Is there a way to remove comments in gcodes created with gcodetools?Cordially
Nope, that's not part of what Inkscape does.
Any plain text editor could help you with that. What kind of comments does gcodetools generate?
These are the 2 common regex expressions I know for gcode comments:
Comments starting with ";": ^;.*$
Comments on a line that are between brackets: ^\(.*\)$
You can experiment here: https://regex101.com/
You can learn more about regex here: https://regexlearn.com/learn/regex101
Good morning,
Is there a way to remove comments in gcodes created with gcodetools?
Cordially
Nope, that's not part of what Inkscape does.
Any plain text editor could help you with that. What kind of comments does gcodetools generate?
These are the 2 common regex expressions I know for gcode comments:
Comments starting with ";": ^;.*$
Comments on a line that are between brackets: ^\(.*\)$
You can experiment here: https://regex101.com/
You can learn more about regex here: https://regexlearn.com/learn/regex101