0
我正在尋找從C++程序中的簡單字符串中提取RGB顏色,但它返回我0匹配!但是,我測試了http://regexr.com/的正則表達式,這似乎是正確的...那麼,怎麼了?std :: regex_match找不到我的字符串格式的RGB顏色
std::string line = "225,85,62 129,89,52 12,95,78";
std::regex regexRGB("([0-9]{1,3}),([0-9]{1,3}),([0-9]{1,3})");
std::smatch colors;
std::regex_match(line, colors, regexRGB);