当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ iswalpha()用法及代码示例


iswalpha()是C++ STL中的内置函数,该函数检查给定的宽字符是否为字母。它在C++的cwctype头文件中定义。

以下字符是字母数字:

  • 大写字母:从A到Z
  • 小写字母:从a到z

用法


int iswalpha(ch)

参数:该函数接受一个强制性参数ch,该参数指定了宽字符,我们必须检查该宽字符是否为字母。

返回值:该函数返回两个值:

  • 如果ch是字母数字字符,则返回非零值。
  • 如果不是字母数字字符,则返回0。

以下示例程序旨在说明上述函数。

程序1

// Program to illustrate 
// iswalpha() function 
#include <cwctype> 
#include <iostream> 
using namespace std; 
  
int main() 
{ 
  
    wchar_t ch1 = 'Q'; 
    wchar_t ch2 = 'g'; 
  
    iswalpha(ch1) ? wcout << ch1  
    << "is alphabet " : wcout << ch1 
    << " is not alphabet "; 
  
    wcout << endl; 
    iswalpha(ch2) ? wcout << ch2  
    << " is an alphabet " : wcout << ch2 
    << " is not an alphabet "; 
  
    return 0; 
}
输出:
Q is an alphabet 
g is an alphabet

程序2

// Program to illustrate 
// iswalpha() function 
#include <cwctype> 
#include <iostream> 
using namespace std; 
  
int main() 
{ 
  
    wchar_t ch1 = 'w'; 
    wchar_t ch2 = '2'; 
  
    iswalpha(ch1) ? wcout << ch1 <<  
    " is alphabet " : wcout << ch1  
    << " is not alphabet "; 
  
    wcout << endl; 
    iswalpha(ch2) ? wcout << ch2 <<  
    " is an alphabet " : wcout << ch2  
    << " is not an alphabet "; 
  
    return 0; 
}
输出:
w is an alphabet 
2 is not an alphabet


相关用法


注:本文由纯净天空筛选整理自IshwarGupta大神的英文原创作品 iswalpha() function in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。