如何在 C++ 中从字符串中解析整数

Jinku Hu 2023年1月30日 2020年11月24日
  1. 使用 std::stoi 函数从字符串中解析出 int
  2. 使用 std::from_chars 函数从字符串中解析整型数字
如何在 C++ 中从字符串中解析整数

本文将介绍几种在 C++ 中从字符串中解析整型数字的方法。

使用 std::stoi 函数从字符串中解析出 int

stoi 函数是 string 头文件中定义的字符串库的一部分,它可以用来将字符串值转换为不同的数字类型。std::stoi, std::stolstd::stoll 用于有符号整数转换。stoi 函数将一个 string 对象作为强制参数,但程序员也可以指定存储整数的地址和处理输入字符串的数基。

下面的例子演示了 stoi 函数的多种用例。请注意,stoi 可以处理字符串中的前导空格,但任何其他字符都会导致 std::invalid_argument 异常。

#include <iostream>
#include <string>
#include <charconv>

using std::cout; using std::cin;
using std::endl; using std::string;
using std::stoi;

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 只能处理输入字符串中的前导 - 号;因此在下面的例子中,它打印出 num5num6 的垃圾值。

#include <iostream>
#include <string>
#include <charconv>

using std::cout; using std::cin;
using std::endl; using std::string;
using std::stoi; using std::from_chars;

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
Author: Jinku Hu
Jinku Hu avatar Jinku Hu avatar

Founder of DelftStack.com. Jinku has worked in the robotics and automotive industries for over 8 years. He sharpened his coding skills when he needed to do the automatic testing, data collection from remote servers and report creation from the endurance test. He is from an electrical/electronics engineering background but has expanded his interest to embedded electronics, embedded programming and front-/back-end programming.

LinkedIn

相关文章 - C++ Integer