windows 利用C++正则表达式解析器提取Gcode的XY坐标

dauxcl2d  于 2023-02-16  发布在  Windows
关注(0)|答案(1)|浏览(260)

我试图解析一个gcode文件,需要从上传的gcode中提取XY坐标。我试图解析,但运行代码后,只有X坐标打印,而不是XY坐标。
另外,当解析器遇到行中的G92时,我如何在解析器中添加一个stop。我希望它在行中有G1时进行解析,在遇到G92时停止。

  1. #include <iostream>
  2. #include <fstream>
  3. #include <string>
  4. #include <regex>
  5. using namespace std;
  6. int main()
  7. {
  8. ifstream gcode ("circuit.gcode");
  9. string line;
  10. regex coord_regex("[XY].?\\d+.\\d+");
  11. smatch coord_match;
  12. while (getline(gcode, line))
  13. {
  14. if (regex_search(line, coord_match, coord_regex))
  15. {
  16. cout << coord_match[0]<< " - "<< coord_match[1]<< endl;
  17. }
  18. }
  19. return 0;
  20. }

图像
Gcode input
Current Output

z4iuyo4d

z4iuyo4d1#

所以,我没有在行中搜索Y,而是以X为起点,解析了整个字符串。
这是最终代码

  1. #include <iostream>
  2. #include <fstream>
  3. #include <string>
  4. #include <regex>
  5. using namespace std;
  6. int main()
  7. {
  8. ifstream gcode (test1.gcode");
  9. string line;
  10. regex coord_regex("[X].?\\d+.\\d+.\\s.\\w+.\\d+\\d+");
  11. smatch coord_match;
  12. while (getline(gcode, line))
  13. {
  14. if (regex_search(line, coord_match, coord_regex))
  15. {
  16. if (line.find("G1") != std::string::npos)
  17. {
  18. cout << coord_match[0]<< endl;
  19. }
  20. else if (line.find("G92") != std::string::npos){
  21. break;
  22. }
  23. }
  24. }
  25. return 0;
  26. }
展开查看全部

相关问题