다음을 통해 공유


ctype::scan_is

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

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

매개 변수

  • maskVal
    마스크를 기준으로 일치 하는 값입니다.

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

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

반환 값

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

설명

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

예제

// ctype_scan_is.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_is
      ( ctype_base::punct, string, string + strlen(string) );
   cout << "The first punctuation is \"" << *i << "\" at position: " 
      << i - string << endl;
}
  

요구 사항

헤더: <locale>

네임 스페이스: std

참고 항목

참조

ctype Class