> Есть строка вида .price+10*200+.summ45*.total
> Необходимо извлечь все переменные, т.е. на выходе чтоб был массив
> .price
> .summ45
> .total
> Т.е. шаблон ".[любыебуквыиличисла]"
> Не понимаю, как указать, чтобы он брал только символы [0-9a-zA-z] #include <cstdlib>
#include <iostream>
#include <string>
#include <boost/regex.hpp>
int main()
{
// Интересующее тебя выражение; \w - это любая цифра, буква или '_'
boost::regex expression("(\\.[a-zA-Z]\\w*)");
// Твоя строка
std::string s(".price+10*200+.summ45*.total");
// Переменные для поиска
std::string::const_iterator start = s.begin();
std::string::const_iterator end = s.end();
boost::match_results<std::string::const_iterator> what;
boost::match_flag_type flags = boost::match_default;
// Поиск
while (boost::regex_search(start, end, what, expression, flags)) {
// Можешь формировать здесь массив найденных строк
std::string findedString(what[1].first, what[2].second);
std::cout << findedString << std::endl;
// Обновление позиции поиска
start = what[0].second;
// Обновление флагов
flags |= boost::match_prev_avail;
flags |= boost::match_not_bob;
}
return EXIT_SUCCESS;
}