http://www.cplusplus.com/reference/string/string/substr/
예제
// string::substr
#include <iostream>
#include <string>
int main ()
{
std::string str="We think in generalities, but we live in details.";
// (quoting Alfred N. Whitehead)
std::string str2 = str.substr (3,5); // 3번째 char부터 5개의 char을 string으로 => "think"
std::size_t pos = str.find("live"); // position of "live" in str
std::string str3 = str.substr (pos); // get from "live" to the end 끝까지!!
std::cout << str2 << ' ' << str3 << '\n';
return 0;
}
'알고리즘 문제풀이 > 알고리즘' 카테고리의 다른 글
[c++] deque 함수 (0) | 2020.04.15 |
---|---|
[c++] priority_queue 함수 / 우선순위 큐란? (0) | 2020.04.11 |
[c++] 문자열, 숫자 변환 / stoi 함수 / to_string 함수 / (0) | 2020.03.27 |
[c++] 완전탐색(Brute-Force) / 순열 / next_permutation 함수 (0) | 2020.03.27 |
[c++] DFS(깊이 우선 탐색) / 개념 / 함수 구현 (1) | 2020.03.03 |