tokenizer将字符串转换为float

时间:2011-10-30 16:20:58

标签: c++ string floating-point tokenize

我想在C ++中将字符串转换为float。目前正试图使用​​atof。任何建议都非常感谢。

他们是这样进来的: 2.22,2.33,2.44,2.55

最后,我希望temp数组看起来像: 温度[4] = {2.22,2.33,2.44,2.55}

getline (myfile,line);
t_tokenizer tok(line, sep);
float temp[4];
int counter = 0;

for (t_tokenizer::iterator beg = tok.begin(); beg != tok.end(); ++beg)
{
    temp[counter] = std::atof(* beg);
    counter++;
}

3 个答案:

答案 0 :(得分:2)

我只想使用stringstream

#include <sstream>

template <class T> 
bool fromString(T &t, const std::string &s, 
                std::ios_base& (*f)(std::ios_base&) = std::dec)) {
  std::istringstream iss(s);
  return !(iss >> f >> t).fail();
}

答案 1 :(得分:1)

您可以随时使用提升的lexical_cast或非提升等价物:

string strarr[] = {"1.1", "2.2", "3.3", "4.4"};
vector<string> strvec(strarr, end(strarr));

vector<float> floatvec;

for (auto i = strvec.begin(); i != strvec.end(); ++i) {
    stringstream s(*i);
    float tmp;
    s >> tmp;
    floatvec.push_back(tmp);
}

for (auto i = floatvec.begin(); i != floatvec.end(); ++i)
    cout << *i << endl;

答案 2 :(得分:0)

你的方法很好,但要注意边界条件:

getline (myfile,line);
t_tokenizer tok(line, sep);
float temp[4];
int counter = 0;

for (t_tokenizer::iterator beg = tok.begin(); beg != tok.end() && counter < 4; ++beg)
{
    temp[counter] = std::atof(* beg);
    ++counter;
}