Inkscape.org
  1. #1
    frou frou @frou

    Good morning,
    Is there a way to remove comments in gcodes created with gcodetools?
    Cordially

  2. #2
    Jurgen Gaeremyn Jurgen Gaeremyn @JurgenG

    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