dh_0e

[C++] stoi/stol/stoll, <string> method 본문

C++

[C++] stoi/stol/stoll, <string> method

dh_0e 2024. 6. 24. 21:18

stoi / stol / stoll

  • 모두 <string> 헤더에 정의되어 있으며, std::stoi, std::stol, std::stoll로 사용됨
// stoi 함수
int stoi(const std::string& str, std::size_t* pos = 0, int base = 10);
int stoi(const std::wstring& str, std::size_t* pos = 0, int base = 10);
// stol 함수
long stol(const std::string& str, std::size_t* pos = 0, int base = 10);
long stol(const std::wstring& str, std::size_t* pos = 0, int base = 10);
// stoll 함수
long long stoll(const std::string& str, std::size_t* pos = 0, int base = 10);
long long stoll(const std::wstring& str, std::size_t* pos = 0, int base = 10);
  • <string> 헤더에 나와있듯이 stoi는 int형, stol은 long형, stoll은  long long형으로 type이 정의되어 있음
  • string or wstring 문자열인 str을 받아와 base 진법을 사용하는 정수로 변환한 값을 return 해주며, 문자를 읽었는지의 여부가 pos에 저장됨
  • str에 "12345 is number"같이 숫자만으로 구성되지 않은 문자열은 "12345" 숫자만 return함

이외에도 다음과 같은 메소드가 존재함

  • atoi, atol, atoll : 널 종료 문자열을 정수로 바꿔줌 (<cstdlib> 헤더에 포함)
  • stoul, stoull : 문자열을 부호 없는 정수로 바꿔줌 (<string> 헤더에 포함)
  • stof, stod, stold : 문자열을 부동 소수점 값으로 바꿔줌 (<string> 헤더에 포함)
  • to_string : 정수나 부동 소수점 값을 문자열로 바꿔줌 (<string> 헤더에 포함)

 

 

string 메소드

<string> 헤더 파일에 존재하는 자주 사용되는 메소드

  • length() / size(): 문자열의 길이를 반환
std::string str = "hello";
std::size_t len = str.length(); // 또는 str.size();
  • empty(): 문자열이 비어있는지 확인
std::string str = "";
bool isEmpty = str.empty();
  • clear(): 문자열의 내용을 모두 삭제
std::string str = "hello";
str.clear();
  • append() / operator+=:  문자열을 다른 문자열에 추가
std::string str = "hello";
str.append(" world"); // 또는 str += " world";
  • substr(): 문자열의 일부분을 추출
std::string str = "hello world";
std::string sub = str.substr(0, 5); // "hello"
  • find(): 문자열 내에서 특정 문자열을 찾음
std::string str = "hello world";
std::size_t found = str.find("world");
  • replace(): 문자열의 일부분을 다른 문자열로 대체
std::string str = "hello world";
str.replace(6, 5, "everyone"); // "hello everyone"
  • compare(): 두 문자열을 비교
std::string str1 = "abc";
std::string str2 = "xyz";
int result = str1.compare(str2);
  • begin() / end(): 문자열의 시작과 끝에 대한 반복자를 반환
std::string str = "hello";
for (auto it = str.begin(); it != str.end(); ++it) {
    std::cout << *it;
}
  • erase(): 문자열의 일부분을 제거
std::string str = "hello world";
str.erase(5, 6); // "hello"
  • insert(): 문자열의 특정 위치에 다른 문자열을 삽입
std::string str = "hello world";
str.insert(5, ","); // "hello, world"
  • swap(): 두 문자열의 내용을 교환
std::string str1 = "hello";
std::string str2 = "world";
str1.swap(str2); // str1은 "world", str2는 "hello"

 

 

 

 


출처

 

 

C++ 레퍼런스 - string 의 stoi, stol, stoll 함수

모두의 코드 C++ 레퍼런스 - string 의 stoi, stol, stoll 함수 작성일 : 2019-09-19 이 글은 19158 번 읽혔습니다. string 혹은 wstring 문자열 str 을 base 진법을 사용하는 부호 있는 정수로 변환한 값을 리턴한다.

modoocode.com

 

'C++' 카테고리의 다른 글

[C++] stringstream  (2) 2024.07.22
[C++] max_element, min_element, find  (0) 2024.07.12
[C++] map, unordered_map  (0) 2024.07.03
[C++] 행렬 곱셈(matrix multiplication) 정의와 그 이유, 구현  (0) 2024.06.25