C++에서 문자열을 Int로 변환하는 방법

Jinku Hu 2023년10월12일
  1. std::stoi 메서드를 사용하여 C++에서 문자열을 Int로 변환
  2. std::from_chars 메서드를 사용하여 C++에서 문자열을 Int로 변환
C++에서 문자열을 Int로 변환하는 방법

본 기사는 C++에서 문자열을 정수의로 변환하는 여러 가지 방법을 소개하고 있다.

std::stoi 메서드를 사용하여 C++에서 문자열을 Int로 변환

stoi 메서드는 부호있는 정수로 변환하기위한 내장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는 선행 공백 문자,+/-기호, 16 진수 접두사 (0x 또는0X), 여러 개의 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!!!

std::stoi, std::stol, std::stoll, std::stoul, std::stoull, std::stof, std::stod, std::stold는 필요에 따라 특정 기능을 구현하는 데 사용할 수 있습니다.

std::from_chars 메서드를 사용하여 C++에서 문자열을 Int로 변환

from_chars 메소드는<charconv>헤더 파일에 정의 된utilities 라이브러리에 추가 된 C++ 17입니다. 지정된 패턴으로 문자 시퀀스를 분석 할 수 있습니다. 이것의 이점은 훨씬 더 빠른 처리 시간과 실패한 구문 분석 사례에서 예외를 더 잘 처리한다는 것입니다. 입력 문자열에는 몇 가지 제한이 있지만, 즉 선행 공백/기타 문자, 기본 16 개의0x/0X 접두사도 처리 할 수 ​​없습니다. 부호있는 정수의 경우 선행 빼기 기호 만 인식됩니다.

std::from_chars의 구문

from_chars(const char* first, const char* last, TYPE& value, int base = 10)
매개변수 설명
[first, last) 구문 분석할 문자 주소 범위
value 성공한 경우 구문 분석 결과의 변수
base 내부 기지 기본값은 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

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 Facebook

관련 문장 - C++ String

관련 문장 - C++ Integer