gpt4 book ai didi

c++ - 增加字符串中的数字

转载 作者:搜寻专家 更新时间:2023-10-31 00:18:55 27 4
gpt4 key购买 nike

我必须将递增的 ID 作为键保存到 levelDB 数据库中。所以我得到的(以及我必须提供给 levelDB 的)是一个字符串。

问题:是否有一种优雅的方法来增加保存在字符串中的数字?

例子:

std::string key = "123";
[..fancy code snipped to increase key by 1..]
std::cout << key << std::endl; // yields 124

干杯!

PS:我更愿意继续使用标准编译,即没有 C++11。

最佳答案

#include <sstream>
std::string key = "123";
std::istringstream in(key);
int int_key;
in >> int_key;
int_key++;
std::ostringstream out;
out << int_key;
key = out.str();
std::cout << key << std::endl;

您也可以使用 c 风格转换来完成:

std::string key = "123";
int int_key = atoi(key.c_str());
int_key++;
char key_char[20];
itoa(int_key, key_char, 10);
key = key_char;
cout << key << endl;

关于c++ - 增加字符串中的数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9309607/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com