C++에서 문자열을 Int 배열로 변환

Jinku Hu 2023년10월12일
  1. std::getlinestd::stoi함수를 사용하여 C++에서stringint배열로 변환
  2. std::string::findstd::stoi함수를 사용하여 C++에서stringint배열로 변환
  3. std::copystd::remove_if함수를 사용하여 C++에서stringint배열로 변환
C++에서 문자열을 Int 배열로 변환

이 기사에서는 C++에서 문자열을 int 배열로 변환하는 방법에 대한 여러 방법을 보여줍니다.

std::getlinestd::stoi함수를 사용하여 C++에서stringint배열로 변환

std::stoi는 문자열 값을 부호있는 정수로 변환하는 데 사용되며std::string 유형의 필수 인수 하나를 사용합니다. 선택적으로 함수는 2 개의 추가 인수를 사용할 수 있으며, 그중 첫 번째 인수는 변환되지 않은 마지막 문자의 인덱스를 저장하는 데 사용할 수 있습니다. 세 번째 인수는 선택적으로 입력의 밑수를 지정할 수 있습니다. 쉼표로 구분 된 숫자를.csv 파일과 같은 입력 문자열로 가정합니다. 따라서 우리는getline 함수를 사용하여 각 숫자를 구문 분석 한 다음 값을stoi에 전달합니다. 또한 반복 할 때마다push_back 메서드를 호출하여std::vector 컨테이너에 각 숫자를 저장합니다.

#include <iostream>
#include <iterator>
#include <sstream>
#include <vector>

using std::cerr;
using std::cout;
using std::endl;
using std::stoi;
using std::string;
using std::stringstream;
using std::vector;

int main(int argc, char *argv[]) {
  string text = "125, 44, 24, 5543, 111";
  vector<int> numbers;
  int num;

  stringstream text_stream(text);
  string item;
  while (std::getline(text_stream, item, ',')) {
    numbers.push_back(stoi(item));
  }

  for (auto &n : numbers) {
    cout << n << endl;
  }

  exit(EXIT_SUCCESS);
}

출력:

125
44
24
5543
111

std::string::findstd::stoi함수를 사용하여 C++에서stringint배열로 변환

또는std::string클래스의find내장 메소드를 사용하여 쉼표 구분 기호의 위치를 ​​검색 한 다음substr함수를 호출하여 숫자를 가져올 수 있습니다. 그런 다음substr결과가stoi에 전달되며,stoi자체가push_back메소드에 연결되어 숫자를vector에 저장합니다. 시퀀스의 마지막 숫자를 추출하는 데 필요한while루프 뒤에 줄이 있습니다.

#include <iostream>
#include <iterator>
#include <sstream>
#include <vector>

using std::cerr;
using std::cout;
using std::endl;
using std::stoi;
using std::string;
using std::stringstream;
using std::vector;

int main(int argc, char *argv[]) {
  string text = "125, 44, 24, 5543, 111";
  vector<int> numbers;

  size_t pos = 0;
  while ((pos = text.find(',')) != string::npos) {
    numbers.push_back(stoi(text.substr(0, pos)));
    text.erase(0, pos + 1);
  }
  numbers.push_back(stoi(text.substr(0, pos)));

  for (auto &n : numbers) {
    cout << n << endl;
  }

  exit(EXIT_SUCCESS);
}

출력:

125
44
24
5543
111

std::copystd::remove_if함수를 사용하여 C++에서stringint배열로 변환

정수를 추출하는 또 다른 방법은std::istream_iteratorstd::back_inserter와 함께std::copy알고리즘을 사용하는 것입니다. 이 솔루션은 문자열 값을vector에 저장하고cout스트림으로 출력하지만std::stoi함수를 쉽게 추가하여 각 요소를int값으로 변환 할 수 있습니다. 하지만 다음 예제 코드는 숫자를 문자열 값으로 만 저장합니다.

#include <iostream>
#include <iterator>
#include <sstream>
#include <vector>

using std::cerr;
using std::cout;
using std::endl;
using std::stoi;
using std::string;
using std::stringstream;
using std::vector;

int main(int argc, char *argv[]) {
  string text = "125, 44, 24, 5543, 111";

  vector<string> nums;
  std::istringstream iss(text);
  copy(std::istream_iterator<string>(iss), std::istream_iterator<string>(),
       std::back_inserter(nums));

  for (auto &n : nums) {
    n.erase(std::remove_if(n.begin(), n.end(), ispunct), n.end());
    cout << n << endl;
  }

  exit(EXIT_SUCCESS);
}

출력:

125
44
24
5543
111
작가: 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