如何在 C++ 中把字串轉換為 Int

Jinku Hu 2023年10月12日
  1. 在 C++ 中使用 std::stoi 方法將 String 轉換為 Int
  2. 在 C++ 中使用 std::from_chars 方法將字串轉換為 Int
如何在 C++ 中把字串轉換為 Int

本文介紹了在 C++ 中把字串轉換為 int 的多種方法。

在 C++ 中使用 std::stoi 方法將 String 轉換為 Int

stoi 方法是一個內建的 string 容器功能,用於轉換為有符號的整數。該方法需要一個型別為 string 的必選引數來操作。我們也可以傳遞一些可選的引數,如字串中的起始位置和數基。下面的程式碼示例演示了多種輸入 string 的情況和相應的 stoi 用例。

#include <iostream>
#include <string>

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

int main() {
  string s1 = "123";
  string s2 = "-123";
  string s3 = "123xyz";
  string s4 = "-123xyz";
  string s5 = "7B";
  string s6 = "-7B";
  string s7 = "1111011";
  string s8 = "-1111011";

  int num1, num2, num3, num4, num5, num6, num7, num8;

  num1 = stoi(s1);
  num2 = stoi(s2);
  num3 = stoi(s3);
  num4 = stoi(s4);
  num5 = stoi(s5, nullptr, 16);
  num6 = stoi(s6, nullptr, 16);
  num7 = stoi(s7, nullptr, 2);
  num8 = stoi(s8, nullptr, 2);

  cout << "num1: " << num1 << " | num2: " << num2 << endl;
  cout << "num3: " << num3 << " | num4: " << num4 << endl;
  cout << "num5: " << num5 << " | num6: " << num6 << endl;
  cout << "num7: " << num7 << " | num8: " << num8 << endl;

  return EXIT_SUCCESS;
}

輸出:

num1: 123 | num2: -123
num3: 123 | num4: -123
num5: 123 | num6: -123
num7: 123 | num8: -123

請注意,stoi 可以處理前導空格字元,+/- 符號,十六進位制字首(0x0X),甚至多個 0,並正確返回整數。它不能處理數字前的其他字元,如果發現一個,就會丟擲異常 std::invalid_argument。你可以通過下面的程式碼示例來了解其行為。

#include <iostream>
#include <string>

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

int main() {
  string s1 = "   123";
  ;
  string s2 = "xyz123";
  ;
  int num1, num2;

  num1 = stoi(s1);
  cout << "num1: " << num1 << endl;
  try {
    num2 = stoi(s2);
    cout << "num2: " << num2 << endl;
  } catch (std::exception& e) {
    cout << e.what() << " caused the error!!!\n";
  }

  return EXIT_SUCCESS;
}

輸出:

num1: 123
stoi caused the error!!!

有多個 stoi 風格的方法可以轉換為不同的數字型別,比如:std::stoi, std::stol, std::stoll, std::stoul, std::stoull, std::stof, std::stod, std::stold,這些方法可以根據需要實現特定的功能。

在 C++ 中使用 std::from_chars 方法將字串轉換為 Int

from_chars 方法是 C++17 中對 utilities 庫的補充,定義在 <charconv> 標頭檔案中。它可以分析具有指定模式的字元序列。這樣做的好處是處理時間更快,並且在解析失敗的情況下能更好地處理異常。雖然對輸入字串有一些限制,即:前導空格/其他字元,甚至基數 16 的 0x/0X 字首也不能處理。對於有符號的整數,只識別前導減號。

std::from_chars 的語法

from_chars(const char* first, const char* last, TYPE& value, int base = 10)
引數 說明
[first, last) 要解析的字元地址範圍
value 如果解析成功,則為解析結果的變數。
base int 基數。預設為 10
#include <charconv>
#include <iostream>
#include <string>

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

int main() {
  string s1 = "123";
  string s2 = "-123";
  string s3 = "123xyz";
  string s4 = "-123xyz";
  string s5 = "7B";
  string s6 = "-7B";
  string s7 = "1111011";
  string s8 = "-1111011";
  string s9 = "    123";
  string s10 = "x123";

  int num1, num2, num3, num4, num5, num6, num7, num8, num9, num10;

  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);
  from_chars(s5.c_str(), s5.c_str() + s5.length(), num5, 16);
  from_chars(s6.c_str(), s6.c_str() + s6.length(), num6, 16);
  from_chars(s7.c_str(), s7.c_str() + s7.length(), num7, 2);
  from_chars(s8.c_str(), s8.c_str() + s8.length(), num8, 2);
  from_chars(s9.c_str(), s9.c_str() + s9.length(), num9);
  from_chars(s10.c_str(), s10.c_str() + s10.length(), num10);

  cout << "num1: " << num1 << " | num2: " << num2 << endl;
  cout << "num3: " << num3 << " | num4: " << num4 << endl;
  cout << "num5: " << num5 << " | num6: " << num6 << endl;
  cout << "num7: " << num7 << " | num8: " << num8 << endl;
  cout << "num9: " << num9 << " | num10: " << num10 << endl;

  return EXIT_SUCCESS;
}

輸出:

num1: 123 | num2: -123
num3: 123 | num4: -123
num5: 123 | num6: -123
num7: 123 | num8: -123
num9: -16777216 | num10: -1 // incorrect values varying over runs
作者: Jinku Hu
Jinku Hu avatar Jinku Hu avatar

DelftStack.com 創辦人。Jinku 在機器人和汽車行業工作了8多年。他在自動測試、遠端測試及從耐久性測試中創建報告時磨練了自己的程式設計技能。他擁有電氣/ 電子工程背景,但他也擴展了自己的興趣到嵌入式電子、嵌入式程式設計以及前端和後端程式設計。

LinkedIn Facebook

相關文章 - C++ String

相關文章 - C++ Integer