Computer >> 컴퓨터 >  >> 프로그램 작성 >> C++

C++ STL의 iswalnum() 함수

<시간/>

C++ STL의 iswalnum() 함수는 주어진 와이드 문자가 영숫자 문자인지, 즉 숫자(0-9), 대문자(A-Z), 소문자(a-z) 또는 영숫자 문자인지 확인합니다.

알고리즘

Begin
   Initializes the characters.
   Call function iswalnum(c1) to check whether it is alphanumeric or not.
   If it is alphanumeric character, then value will be returned otherwise zero will be returned.
End

예시 코드

#include <cwctype>
#include <iostream>
using namespace std;
int main() {
   wchar_t c1 = '/';
   wchar_t c2 = 'a';
   if (iswalnum(c1))
      wcout << c1 << " is alphanumeric ";
   else
      wcout << c1 << " is not alphanumeric ";
      wcout << endl;
   if (iswalnum(c2))
      wcout << c2 << " is alphanumeric ";
   else
      wcout << c2 << " is not alphanumeric ";
   return 0;
}

출력

/ is not alphanumeric
a is alphanumeric