다음을 통해 공유


ctype::scan_not

지정 된 마스크와 일치 하지 않는 범위에서 첫 번째 문자를 찾습니다.

const CharType *scan_not(
    mask maskVal, 
    const CharType* first, 
    const CharType* last,
) const;

매개 변수

  • maskVal
    문자에 일치 되지 않는 마스크 값입니다.

  • first
    검색할 범위의 첫 번째 문자에 대 한 포인터입니다.

  • last
    검색할 범위의 마지막 문자 바로 다음 문자에 대 한 포인터입니다.

반환 값

지정 된 마스크와 일치 하지 않는 범위에서 첫 번째 문자에 대 한 포인터입니다.함수 반환 값 등이 있는 경우 last.

설명

멤버 함수를 반환 합니다. do_scan_not(maskVal, first, last).

예제

// ctype_scan_not.cpp
// compile with: /EHsc
#include <locale>
#include <iostream>
using namespace std;

int main( )   
{
   locale loc1 ( "German_Germany" );
   
   char *string = "Hello, my name is John!";

   const char* i = use_facet<ctype<char> > ( loc1 ).scan_not
      ( ctype_base::alpha, string, string + strlen(string) );
   cout << "First nonalpha character is \"" << *i << "\" at position: " 
      << i - string << endl;
}
  

요구 사항

헤더: <locale>

네임 스페이스: std

참고 항목

참조

ctype Class