C++에서 문자열 분할

Jinku Hu 2023년10월12일
  1. std::string::findstd::string::erase함수를 사용하여 C++에서 문자열 분할
  2. std::getlineerase-remove관용구를 사용하여 C++에서 문자열 분할
  3. std::istringstreamstd::copystd::istream_iterator와 함께 사용하여 C++에서 문자열 분할
C++에서 문자열 분할

이 기사에서는 C++에서 문자열을 분할하는 방법에 대한 몇 가지 방법을 설명합니다.

std::string::findstd::string::erase함수를 사용하여 C++에서 문자열 분할

finderase함수는std::string클래스의 내장 멤버이며, 조합하여 텍스트를 주어진 문자로 구분 된 토큰으로 분할 할 수 있습니다. 이 방법은 사용자가 선언 한 하위 문자열 또는 단일 문자로 문자열을 분할하는 데 사용할 수 있습니다. 여전히 다음 예제 코드는 구분 기호가a인 시나리오를 보여줍니다. find메소드는 발견 된 경우 하위 문자열의 위치를 ​​리턴하고 발견되지 않은 경우string::npos를 리턴합니다. string의 처리 된 부분과 구분 기호를 삭제해야합니다. 따라서이 작업을 처리하기 위해erase함수가 호출됩니다.

#include <iostream>
#include <string>
#include <vector>

using std::cin;
using std::cout;
using std::endl;
using std::istringstream;
using std::string;
using std::vector;

int main() {
  string text =
      "Vivamus quis sagittis diam. "
      "Cras accumsan, dui id varius "
      "vitae tortor.";
  string delimiter = "a";
  vector<string> words{};

  size_t pos;
  while ((pos = text.find(delimiter)) != string::npos) {
    words.push_back(text.substr(0, pos));
    text.erase(0, pos + delimiter.length());
  }
  for (const auto &str : words) {
    cout << str << endl;
  }

  return EXIT_SUCCESS;
}

출력:

Viv
mus quis s
gittis di
m. Cr
s
ccums
n, dui id v
rius vit

std::getlineerase-remove관용구를 사용하여 C++에서 문자열 분할

주어진 문제를 해결하는 유사한 방법은std::getline함수를 사용하는 것입니다.이 함수는 사용자가 지정한 구분 기호 사이의 하위 문자열도 추출 할 수 있습니다. 다음 샘플 코드는 각 공백 문자의 텍스트를 분할하고 추출 된 문자열을std::vector컨테이너에 저장합니다. 그러나 저장하기 전에 문자열에서 구두점 문자를 삭제하는 데 사용되는erase-remove관용구가 있습니다.

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

using std::cin;
using std::cout;
using std::endl;
using std::istringstream;
using std::string;
using std::vector;

int main() {
  string text =
      "Vivamus quis sagittis diam. "
      "Cras accumsan, dui id varius "
      "vitae tortor.";

  vector<string> words{};
  char delimiter = ' ';

  istringstream sstream(text);
  string word;
  while (std::getline(sstream, word, delimiter)) {
    word.erase(std::remove_if(word.begin(), word.end(), ispunct), word.end());
    words.push_back(word);
  }

  for (const auto &str : words) {
    cout << str << endl;
  }

  return EXIT_SUCCESS;
}

출력:

Vivamus
quis
sagittis
diam
Cras
accumsan
dui
id
varius
vitae
tortor

std::istringstreamstd::copystd::istream_iterator와 함께 사용하여 C++에서 문자열 분할

또는 분할해야하는 텍스트로std::istringstream객체를 초기화하고std::istream_iterator로 트래버스 할 수 있습니다. 이 메소드는istream_iterator의 기본 구분 기호 인 공백으로 만 문자열을 분할 할 수 있습니다. 마지막으로 추출 된 문자열을vector컨테이너에 복사해야합니다. 이는std::copy알고리즘을 사용하여 수행됩니다.

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

using std::cin;
using std::cout;
using std::endl;
using std::istringstream;
using std::string;
using std::vector;

int main() {
  string text =
      "Vivamus quis sagittis diam. "
      "Cras accumsan, dui id varius "
      "vitae tortor.";

  vector<string> words{};
  char delimiter = ' ';

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

  for (const auto &str : words) {
    cout << str << endl;
  }

  return EXIT_SUCCESS;
}

출력:

Vivamus
quis
sagittis
diam.
Cras
accumsan,
dui
id
varius
vitae
tortor.
작가: 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