我在 boost 中使用 regex_search,如下所示:
std::string symbol = "abcd1234";
boost::regex regExpr("(\\d{4})", boost::regex::icase);
boost::smatch regMatch;
boost::regex_search(symbol, regMatch, regExpr);
我需要得到的是:“abcd”,即到第一个匹配的reg 表达式的原始字符串。这怎么可能?提前致谢...