"C++ 문자열 find last of()"의 두 판 사이의 차이

잔글 (Jmnote님이 C++ find last of() 문서를 C++ 문자열 find last of() 문서로 이동했습니다)
1번째 줄: 1번째 줄:
{{DISPLAYTITLE:C++ find_last_of()}}
==개요==
==개요==
{{DISPLAYTITLE:C++ 문자열  find_last_of()}}
;C++ find_last_of()
;C++ find_last_of()



2023년 9월 22일 (금) 02:08 판

1 개요

C++ find_last_of()
#include <iostream>
using namespace std;
int main() {
	string s = "Hello World!";
	int pos = s.find_last_of("H");
	cout << pos << endl; // 0
	cout << s.find_last_of("l")  << endl; // 9
	cout << s.find_last_of("ll") << endl; // 9
	cout << s.find_last_of("e")  << endl; // 1
	cout << s.find_last_of("z")  << endl; // 18446744073709551615
}

2 같이 보기

3 참고

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}