다음을 통해 공유


isalnum

로케일의 요소는 영문자 또는 숫자 문자 인지 여부를 테스트 합니다.

template<Class CharType>
   bool isalnum(
      CharType _Ch, 
      const locale& _Loc
   )

매개 변수

  • _Ch
    영숫자 테스트 요소입니다.

  • _Loc
    테스트할 영숫자 요소를 포함 하는 로캘.

반환 값

true 이면 경우 테스트 요소 영숫자입니다. false 이면 되지 않은 경우.

예제

// locale_isalnum.cpp
// compile with: /EHsc
#include <locale>
#include <iostream>

using namespace std;

int main( )   
{
   locale loc ( "German_Germany" );
   bool result1 = isalnum ( 'L', loc);
   bool result2 = isalnum ( '@', loc);
   bool result3 = isalnum ( '3', loc);

   if ( result1 )
      cout << "The character 'L' in the locale is "
           << "alphanumeric." << endl;
   else
      cout << "The character 'L' in the locale is "
           << " not alphanumeric." << endl;

   if ( result2 )
      cout << "The character '@' in the locale is "
           << "alphanumeric." << endl;
   else
      cout << "The character '@' in the locale is "
           << " not alphanumeric." << endl;

   if ( result3 )
      cout << "The character '3' in the locale is "
           << "alphanumeric." << endl;
   else
      cout << "The character '3' in the locale is "
           << " not alphanumeric." << endl;
}
  
  
  

요구 사항

헤더: <locale>

네임 스페이스: std