我试图解析一个gcode文件,需要从上传的gcode中提取XY坐标。我试图解析,但运行代码后,只有X坐标打印,而不是XY坐标。
另外,当解析器遇到行中的G92时,我如何在解析器中添加一个stop。我希望它在行中有G1时进行解析,在遇到G92时停止。
#include <iostream>
#include <fstream>
#include <string>
#include <regex>
using namespace std;
int main()
{
ifstream gcode ("circuit.gcode");
string line;
regex coord_regex("[XY].?\\d+.\\d+");
smatch coord_match;
while (getline(gcode, line))
{
if (regex_search(line, coord_match, coord_regex))
{
cout << coord_match[0]<< " - "<< coord_match[1]<< endl;
}
}
return 0;
}
1条答案
按热度按时间z4iuyo4d1#
所以,我没有在行中搜索Y,而是以X为起点,解析了整个字符串。
这是最终代码