C++ - std::string::find (C++11)
1. find() 함수
주어진 문자열 순서와 동일한 첫 번째 부분 문자열을 찾는 함수
Finds the first substring equal to the given character sequence.
2. find() return value
찾은 부분 문자열의 첫 문자 위치 또는 해당 부분 문자열이없는 경우 npos를 return
Position of the first character of the found substring or npos if no such substring is found.
Output:
6
13
not found