#include <iostream>
#include <string>
using namespace std;
int main() {
string text = "Hello, World!";
// 문자열의 일부를 추출
string part1 = text.substr(7, 5); // 7번째 위치에서 5글자
cout << "part1: " << part1 << endl; // 출력: World
// 시작 위치만 지정한 경우, 해당 위치부터 끝까지 추출
string part2 = text.substr(7); // 7번째 위치에서 끝까지
cout << "part2: " << part2 << endl; // 출력: World!
return 0;
}
'C++' 카테고리의 다른 글
c++ 소수 구하기 (0) | 2024.11.08 |
---|---|
c++ <bits/stdc++.h> 헤더 사용하기 (윈도우 & 맥) (0) | 2024.11.07 |
c++ string 값 거꾸로 뒤집기 (0) | 2024.11.01 |
c++ a space is required between consecutive right angle brackets (use '> >')gcc 에러 해결 (0) | 2024.11.01 |
c++ 입출력 속도 향상시키기 (0) | 2024.10.31 |