我想将一个字符串转换为int,我不是指ASCII码。
为了快速回顾,我们将一个方程作为字符串传递。我们要把它分解,正确地格式化并解出线性方程。说到这里,我不能把一个字符串转换成int型。
我知道字符串的格式是(-5)或(25)等,所以它肯定是int型。但是我们如何从字符串中提取它呢?
我想到的一种方法是在字符串中运行一个for/while循环,检查一个数字,提取后面的所有数字,然后看看是否有前导'-',如果有,将int乘以-1。
对于这样一个小问题来说,这似乎有点过于复杂了。什么好主意吗?
从http://www.cplusplus.com/reference/string/stoi/
// stoi example
#include <iostream> // std::cout
#include <string> // std::string, std::stoi
int main ()
{
std::string str_dec = "2001, A Space Odyssey";
std::string str_hex = "40c3";
std::string str_bin = "-10010110001";
std::string str_auto = "0x7f";
std::string::size_type sz; // alias of size_t
int i_dec = std::stoi (str_dec,&sz);
int i_hex = std::stoi (str_hex,nullptr,16);
int i_bin = std::stoi (str_bin,nullptr,2);
int i_auto = std::stoi (str_auto,nullptr,0);
std::cout << str_dec << ": " << i_dec << " and [" << str_dec.substr(sz) << "]\n";
std::cout << str_hex << ": " << i_hex << '\n';
std::cout << str_bin << ": " << i_bin << '\n';
std::cout << str_auto << ": " << i_auto << '\n';
return 0;
}
输出:
2001,太空漫游:2001和[,太空漫游]
40 c3: 16579
-10010110001: -1201
0x7f:127
一行版本:long n = strtol(s.c c_str(), NULL, base);.
(s为字符串,base为int,如2,8,10,16)
你可以参考这个链接了解更多关于strtol的细节。
核心思想是使用sttol函数,该函数包含在cstdlib中。
由于strtol只处理char数组,我们需要将字符串转换为char数组。你可以参考这个链接。
一个例子:
#include <iostream>
#include <string> // string type
#include <bitset> // bitset type used in the output
int main(){
s = "1111000001011010";
long t = strtol(s.c_str(), NULL, 2); // 2 is the base which parse the string
cout << s << endl;
cout << t << endl;
cout << hex << t << endl;
cout << bitset<16> (t) << endl;
return 0;
}
它将输出:
1111000001011010
61530
f05a
1111000001011010
为了更详尽(正如评论中要求的那样),我使用std::from_chars添加了c++ 17给出的解决方案。
std::string str = "10";
int number;
std::from_chars(str.data(), str.data()+str.size(), number);
如果您想检查转换是否成功:
std::string str = "10";
int number;
auto [ptr, ec] = std::from_chars(str.data(), str.data()+str.size(), number);
assert(ec == std::errc{});
// ptr points to chars after read number
此外,要比较所有这些解决方案的性能,请参阅以下快速工作台链接:https://quick-bench.com/q/GBzK53Gc-YSWpEA9XskSZLU963Y
(std::from_chars是最快的std::istringstream是最慢的)