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


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


C++ 中的iswlower() 函数检查给定的宽字符是否为小写字符。

iswlower() 函数在<cwctype> 头文件中定义。

iswlower()原型

int iswlower(wint_t ch);

iswlower() 函数检查 ch 是否为小写字符,即以下字符之一

a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z.

参数:

  • ch :要检查的宽字符。

返回:

  • 如果ch 是小写字符,iswlower() 函数将返回非零值。
  • 如果ch 不是小写字符,则返回零。

示例:iswlower() 函数如何工作?

#include <cwctype>
#include <iostream>
#include <clocale>
using namespace std;

int main()
{
	setlocale(LC_ALL, "en_US.UTF-8");

	wchar_t ch1 = L'\u03a0';
	wchar_t ch2 = L'\u03c0';

	wcout << L"islower(" << ch1 << ") returned " << boolalpha << (bool)iswlower(ch1) << endl;
	wcout << L"islower(" << ch2 << ") returned " << boolalpha << (bool)iswlower(ch2) << endl;

	return 0;
}

运行程序时,输出将是:

islower(Π) returned false
islower(π) returned true

相关用法


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