728x90
728x170
*string형 변수 길이 구하기
- (string형 변수).length()를 길이를 나타내는 변수에 대입해준다.
- 예)
1 2 3 | string base = "hello world!"; base.length(); base.size(); | cs |
- size()와 length()는 이름만 다를 뿐, 같은 일을 하는 멤버 함수다.
- 내용 출처 : http://makerj.tistory.com/127#string-길이
728x90
그리드형(광고전용)
'Programming > C++' 카테고리의 다른 글
입력된 문자열에서 공백을 제거하여 출력하기 (0) | 2018.09.24 |
---|---|
Pair Vector (0) | 2017.11.26 |
[header][container] queue : priority_queue (0) | 2017.11.17 |
[header][container] queue : queue (0) | 2017.11.17 |
vector 안의 원소들의 순서를 역순으로 바꾸는 방법 (0) | 2017.11.12 |
정렬 알고리즘의 시간 복잡도 비교 (0) | 2017.11.08 |
데이터 형식 범위 (0) | 2017.11.08 |
[header][C library] cwctype (wctype.h) (0) | 2017.11.08 |