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

1번째 줄: 1번째 줄:
==개요==
==개요==
{{DISPLAYTITLE:C++ 문자열  find_last_of()}}
{{DISPLAYTITLE:C++ 문자열  find_last_of()}}
;C++ find_last_of()
;C++ 문자열 find_last_of()


<syntaxhighlight lang='cpp' run>
<syntaxhighlight lang='cpp' run>
18번째 줄: 18번째 줄:


==같이 보기==
==같이 보기==
* [[C++ find()]]
* [[C++ 문자열 find()]]
* [[C++ search()]]
* [[C++ search()]]
* [[C++ binary_search()]]
* [[C++ binary_search()]]

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

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 }}