Namespaces
Variants

std:: iswlower

From cppreference.net
定义于头文件 <cwctype>
int iswlower ( std:: wint_t ch ) ;

检查给定的宽字符是否为小写字母,即 abcdefghijklmnopqrstuvwxyz 中的任一字符或当前区域设置特定的任何小写字母。

如果 ch 的值既不能表示为 wchar_t ,也不等于宏 WEOF 的值,则行为是未定义的。

目录

参数

ch - 宽字符

返回值

若宽字符为小写字母则返回非零值,否则返回零。

注释

ISO 30112 规定了哪些 Unicode 字符被包含在 POSIX 小写类别中。

示例

#include <clocale>
#include <cwctype>
#include <iostream>
int main()
{
    wchar_t c = L'\u0444'; // 西里尔小写字母 ef ('ф')
    std::cout << std::hex << std::showbase << std::boolalpha
              << "在默认区域设置中,iswlower("
              << static_cast<std::wint_t>(c) << ") = "
              << static_cast<bool>(std::iswlower(c)) << '\n';
    std::setlocale(LC_ALL, "en_US.utf8");
    std::cout << "在 Unicode 区域设置中,iswlower("
              << static_cast<std::wint_t>(c) << ") = "
              << static_cast<bool>(std::iswlower(c)) << '\n';
}

输出:

在默认区域设置中,iswlower(0x444) = false
在 Unicode 区域设置中,iswlower(0x444) = true

参见

检查字符是否被本地化环境分类为小写字母
(函数模板)
检查字符是否为小写字母
(函数)
C 文档 关于 iswlower
ASCII 值 字符

iscntrl
iswcntrl

isprint
iswprint

isspace
iswspace

isblank
iswblank

isgraph
iswgraph

ispunct
iswpunct

isalnum
iswalnum

isalpha
iswalpha

isupper
iswupper

islower
iswlower

isdigit
iswdigit

isxdigit
iswxdigit

十进制 十六进制 八进制
0–8 \x0 \x8 \0 \10 控制码( NUL 等) ≠0 0 0 0 0 0 0 0 0 0 0 0
9 \x9 \11 制表符( \t ≠0 0 ≠0 ≠0 0 0 0 0 0 0 0 0
10–13 \xA \xD \12 \15 空白字符( \n \v \f \r ≠0 0 ≠0 0 0 0 0 0 0 0 0 0
14–31 \xE \x1F \16 \37 控制码 ≠0 0 0 0 0 0 0 0 0 0 0 0
32 \x20 \40 空格 0 ≠0 ≠0 ≠0 0 0 0 0 0 0 0 0
33–47 \x21 \x2F \41 \57 !"#$%&'()*+,-./ 0 ≠0 0 </