當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。