如何在 C++ 中从字符串中解析整数
Jinku Hu
2023年10月12日
本文将介绍几种在 C++ 中从字符串中解析整型数字的方法。
使用 std::stoi
函数从字符串中解析出 int
stoi
函数是 string
头文件中定义的字符串库的一部分,它可以用来将字符串值转换为不同的数字类型。std::stoi
, std::stol
和 std::stoll
用于有符号整数转换。stoi
函数将一个 string
对象作为强制参数,但程序员也可以指定存储整数的地址和处理输入字符串的数基。
下面的例子演示了 stoi
函数的多种用例。请注意,stoi
可以处理字符串中的前导空格,但任何其他字符都会导致 std::invalid_argument
异常。
#include <charconv>
#include <iostream>
#include <string>
using std::cin;
using std::cout;
using std::endl;
using std::stoi;
using std::string;
int main() {
string s1 = "333";
string s2 = "-333";
string s3 = "333xio";
string s4 = "01011101";
string s5 = " 333";
string s6 = "0x33";
int num1, num2, num3, num4, num5, num6;
num1 = stoi(s1);
num2 = stoi(s2);
num3 = stoi(s3);
num4 = stoi(s4, nullptr, 2);
num5 = stoi(s5);
num6 = stoi(s6, nullptr, 16);
cout << "num1: " << num1 << " | num2: " << num2 << endl;
cout << "num3: " << num3 << " | num4: " << num4 << endl;
cout << "num5: " << num5 << " | num6: " << num6 << endl;
return EXIT_SUCCESS;
}
输出:
num1: 333 | num2: -333
num3: 333 | num4: 93
num5: 333 | num6: 51
使用 std::from_chars
函数从字符串中解析整型数字
作为一种替代方法,实用程序库中的 from_chars
函数可以解析 int
值。自 C++17 版本以来,它一直是标准库的一部分,并在 <charconv>
头文件中定义。
与 stoi
大不相同的是,from_chars
对字符的范围进行操作,不知道对象的长度和边界。因此,程序员应该指定范围的开始和结束作为前两个参数。第三个参数是 int
变量,转换后的值将分配给它。
不过请注意,from_chars
只能处理输入字符串中的前导 -
号;因此在下面的例子中,它打印出 num5
和 num6
的垃圾值。
#include <charconv>
#include <iostream>
#include <string>
using std::cin;
using std::cout;
using std::endl;
using std::from_chars;
using std::stoi;
using std::string;
int main() {
string s1 = "333";
string s2 = "-333";
string s3 = "333xio";
string s4 = "01011101";
string s5 = " 333";
string s6 = "0x33";
int num1, num2, num3, num4, num5, num6;
from_chars(s1.c_str(), s1.c_str() + s1.length(), num1);
from_chars(s2.c_str(), s2.c_str() + s2.length(), num2);
from_chars(s3.c_str(), s3.c_str() + s3.length(), num3);
from_chars(s4.c_str(), s4.c_str() + s4.length(), num4, 2);
from_chars(s5.c_str(), s5.c_str() + s5.length(), num5);
from_chars(s6.c_str(), s6.c_str() + s6.length(), num6);
cout << "num1: " << num1 << " | num2: " << num2 << endl;
cout << "num3: " << num3 << " | num4: " << num4 << endl;
cout << "num5: " << num5 << " | num6: " << num6 << endl;
return EXIT_SUCCESS;
}
输出:
num1: 333 | num2: -333
num3: 333 | num4: 93
num5: -1858679306 | num6: 0
作者: Jinku Hu