C++ 添加逗号分隔值
c++ adding comma separated values
正在尝试将字符串中的一些逗号分隔值加在一起。我觉得我需要删除逗号。这是 stringstream 的情况吗?
string str = "4, 3, 2"
//Get individual numbers
//Add them together
//output the sum. Prints 9
我会在 while 循环中使用 istringstream
和 getline
来拆分(标记化)逗号周围的字符串。
然后简单地使用 std::stoi
将每个字符串标记转换为一个整数,并将该数字添加到总和中。 std::stoi
丢弃字符串输入中的所有空白字符。
std::string str = "4, 3, 2";
std::istringstream ss(str);
int sum = 0;
std::string token;
while(std::getline(ss, token, ',')) {
sum += std::stoi(token);
}
std::cout << "The sum: " << sum;
正在尝试将字符串中的一些逗号分隔值加在一起。我觉得我需要删除逗号。这是 stringstream 的情况吗?
string str = "4, 3, 2"
//Get individual numbers
//Add them together
//output the sum. Prints 9
我会在 while 循环中使用 istringstream
和 getline
来拆分(标记化)逗号周围的字符串。
然后简单地使用 std::stoi
将每个字符串标记转换为一个整数,并将该数字添加到总和中。 std::stoi
丢弃字符串输入中的所有空白字符。
std::string str = "4, 3, 2";
std::istringstream ss(str);
int sum = 0;
std::string token;
while(std::getline(ss, token, ',')) {
sum += std::stoi(token);
}
std::cout << "The sum: " << sum;