C++에서 문자열 길이 찾기

Jinku Hu 2023년10월12일
  1. length함수를 사용하여 C++에서 문자열 길이 찾기
  2. size함수를 사용하여 C++에서 문자열 길이 찾기
  3. while루프를 사용하여 C++에서 문자열 길이 찾기
  4. std::strlen함수를 사용하여 C++에서 문자열 길이 찾기
C++에서 문자열 길이 찾기

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

length함수를 사용하여 C++에서 문자열 길이 찾기

C++ 표준 라이브러리는std::basic_string클래스를 제공하여char유사 시퀀스를 확장하고 이러한 데이터를 저장하고 조작하기위한 일반 구조를 구현합니다. 그러나 대부분의 사람들은std::basic_string<char>의 유형 별칭 인std::string유형에 더 익숙합니다. std::string은 저장된char시퀀스의 길이를 검색하는length내장 함수를 제공합니다.

#include <cstring>
#include <iostream>

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

int main(int argc, char *argv[]) {
  string str1 = "this is random string oiwaoj";

  cout << "string: " << str1 << endl;
  cout << "length: " << str1.length() << endl;

  exit(EXIT_SUCCESS);
}

출력:

string: this is random string oiwaoj
length: 28

size함수를 사용하여 C++에서 문자열 길이 찾기

std::string클래스에 포함 된 또 다른 내장 함수는size이며, 이전 메소드와 유사하게 작동합니다. 인수를 사용하지 않고 문자열 개체의char요소 수를 반환합니다.

#include <cstring>
#include <iostream>

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

int main(int argc, char *argv[]) {
  string str1 = "this is random string oiwaoj";

  cout << "string: " << str1 << endl;
  cout << "length: " << str1.size() << endl;

  exit(EXIT_SUCCESS);
}

출력:

string: this is random string oiwaoj
length: 28

while루프를 사용하여 C++에서 문자열 길이 찾기

또는 문자열의 길이를 계산하기 위해 자신의 함수를 구현할 수 있습니다. 이 경우while루프를 사용하여 문자열을char시퀀스로 탐색하고 카운터를 반복 할 때마다 하나씩 증가시킵니다. 함수는char를 인수로 취하고c_str메소드가 기본 함수에서이 포인터를 검색하기 위해 호출됩니다. 역 참조 된 포인터 값이0과 같으면 루프가 중지되고 널 종료 문자열 구현은이를 보장합니다.

#include <cstring>
#include <iostream>

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

size_t lengthOfString(const char *s) {
  size_t size = 0;

  while (*s) {
    size += 1;
    s += 1;
  }

  return size;
}

int main(int argc, char *argv[]) {
  string str1 = "this is random string oiwaoj";

  cout << "string: " << str1 << endl;
  cout << "length: " << lengthOfString(str1.c_str()) << endl;

  exit(EXIT_SUCCESS);
}

출력:

string: this is random string oiwaoj
length: 28

std::strlen함수를 사용하여 C++에서 문자열 길이 찾기

마지막으로, 사용자 정의 함수 인lengthOfString으로 단일const char*인수를 취하는 구식 C 문자열 라이브러리 함수strlen에 의지 할 수 있습니다. 이 마지막 두 메소드는 순회 중에 범위를 벗어난 메모리에 액세스 할 수 있으므로 널 바이트로 끝나지 않는char시퀀스에서 호출 될 때 결함이있을 수 있습니다.

#include <cstring>
#include <iostream>

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

int main(int argc, char *argv[]) {
  string str1 = "this is random string oiwaoj";

  cout << "string: " << str1 << endl;
  cout << "length: " << std::strlen(str1.c_str()) << endl;

  exit(EXIT_SUCCESS);
}

출력:

string: this is random string oiwaoj
length: 28
작가: 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