"C++"의 두 판 사이의 차이

jjuiddong
이동: 둘러보기, 찾기
(새 문서: * 대소문자 변환 ** http://neodreamer.tistory.com/267 ** toupper( int ) 대문자 변환 리턴 ** tolower( int ) 소문자 변환 리턴 std::string a = "abcABC.,!"; std::t...)
 
 
(한 사용자의 중간의 편집 7개 숨겨짐)
8번째 줄: 8번째 줄:
 
  std::transform(a.begin(), a.end(), a.begin(), toupper);    // a를 대문자로 변경
 
  std::transform(a.begin(), a.end(), a.begin(), toupper);    // a를 대문자로 변경
 
  std::transform(a.begin(), a.end(), a.begin(), tolower);    // a를 소문자로 변경
 
  std::transform(a.begin(), a.end(), a.begin(), tolower);    // a를 소문자로 변경
 +
 +
* [[콘솔에서 hinstance 얻기]]
 +
* [[특정 문자열 변경 replace]]
 +
* [[문자열 split]]
 +
* [[프로그램이 죽었을 때, jit 없이 종료하기]]
 +
* [[시간차 계산]]
 +
* [[TopMost 윈도우]]
 +
* [[메모리에 접근 가능한지 검사]]
 +
* [[멤버 함수 포인터]]

2015년 12월 13일 (일) 14:59 기준 최신판

std::string a = "abcABC.,!"; 
std::transform(a.begin(), a.end(), a.begin(), toupper);    // a를 대문자로 변경
std::transform(a.begin(), a.end(), a.begin(), tolower);    // a를 소문자로 변경
개인 도구
이름공간

변수
행위
둘러보기
도구모음