我正在尝试实现简单的案例(基本上可以在两个标签之间找到文本,无论它们是什么)。我想获得线路
/* 我的评论 1 */
/* 我的评论 2 */
/* 我的评论 3 */
作为输出。看来我需要将捕获组限制为 1?因为在字符串上Hello /* my comment 1 */ world
我得到了我想要的 - res[0] 包含 /* 我的评论 1 */
#include <iostream>
#include <string>
#include <regex>
int main(int argc, const char * argv[])
{
std::string str = "Hello /* my comment 1 */ world /* my comment 2 */ of /* my comment 3 */ cpp";
std::cmatch res;
std::regex rx("/\\*(.*)\\*/");
std::regex_search(str.c_str(), res, rx);
for (int i = 0; i < sizeof(res) / sizeof(res[0]); i++) {
std::cout << res[i] << std::endl;
}
return 0;
}