我正在使用boost property_tree加载一个ini文件。我的ini文件主要包含“简单”类型(即字符串,整数,双精度等),但我确实有一些代表数组的值。
[Example]
thestring = string
theint = 10
theintarray = 1,2,3,4,5
thestringarray = cat, dog, bird
我无法弄清楚如何通过编程方式将theintarray
和thestringarray
加载到vector
或list
等容器对象中。我注定要把它作为一个字符串读出并自己解析出来吗?
谢谢!
答案 0 :(得分:7)
是的,你注定要自己解析。但这很容易:
template<typename T>
std::vector<T> to_array(const std::string& s)
{
std::vector<T> result;
std::stringstream ss(s);
std::string item;
while(std::getline(ss, item, ',')) result.push_back(boost::lexical_cast<T>(item));
return result;
}
可以使用:
std::vector<std::string> foo =
to_array<std::string>(pt.get<std::string>("thestringarray"));
std::vector<int> bar =
to_array<int>(pt.get<std::string>("theintarray"));