Вы можете разделить на двойной \n\n
, если вы не имели в виду пустую строку как «строку, которая может содержать другие пробелы».
Live On Coliru
#include <boost/regex.hpp>
#include <boost/algorithm/string_regex.hpp>
#include <boost/algorithm/string/classification.hpp>
#include <sstream>
#include <iostream>
#include <iomanip>
int main() {
std::stringstream source;
source.str(R"(line one
that was an empty line, now some whitespace:
bye)");
std::string line(std::istreambuf_iterator<char>(source), {});
std::vector<std::string> tokens;
auto re = boost::regex("\n\n");
boost::split_regex(tokens, line, re);
for (auto token : tokens) {
std::cout << std::quoted(token) << "\n";
}
}
Печатает
"line one"
"that was an empty line, now some whitespace:
bye"
Разрешить пробелы в «пустых» строках
Просто express в регулярном выражении:
auto re = boost::regex(R"(\n\s*\n)");
Сейчас вывод: Live On Coliru
"line one"
"that was an empty line, now some whitespace:"
"bye"