名前空間
変種
操作

islower

提供: cppreference.com
< c‎ | string‎ | byte
ヘッダ <ctype.h> で定義
int islower(int ch );

現在の C のロケールに従って、指定された文字が小文字に分類されるかどうか調べます。 デフォルトの "C" ロケールでは、 islower は小文字 (abcdefghijklmnopqrstuvwxyz) に対してのみ非ゼロの値を返します。

islower が非ゼロの値を返す場合、 iscntrlisdigitispunctisspace は同じ C のロケールで同じ文字に対してゼロを返すことが保証されます。

ch の値が unsignedchar で表現できず、 EOF とも等しくない場合、動作は未定義です。

目次

[編集]引数

ch - 分類する文字

[編集]戻り値

文字が小文字であれば非ゼロの値、そうでなければゼロ。

[編集]

#include <stdio.h>#include <ctype.h>#include <locale.h>   int main(void){unsignedchar c ='\xe5';// letter å in ISO-8859-1printf("In the default C locale, \\xe5 is %slowercase\n", islower(c)?"":"not ");setlocale(LC_ALL, "en_GB.iso88591");printf("In ISO-8859-1 locale, \\xe5 is %slowercase\n", islower(c)?"":"not ");}

出力:

In the default C locale, \xe5 is not lowercase In ISO-8859-1 locale, \xe5 is lowercase

[編集]参考文献

  • C11 standard (ISO/IEC 9899:2011):
  • 7.4.1.7 The islower function (p: 202)
  • C99 standard (ISO/IEC 9899:1999):
  • 7.4.1.7 The islower function (p: 183)
  • C89/C90 standard (ISO/IEC 9899:1990):
  • 4.3.1.6 The islower function

[編集]関連項目

ワイド文字が小文字かどうか調べます
(関数)[edit]
ASCII値
(16進)
文字

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 0x00-0x08 制御コード (NULなど) ≠000000000000
9 0x09 タブ (\t) ≠00≠0≠000000000
10 - 13 0x0A-0x0D ホワイトスペース (\n,\v,\f,\r) ≠00≠0000000000
14 - 31 0x0E-0x1F 制御文字 ≠000000000000
32 0x20 スペース 0≠0≠0≠000000000
33 - 47 0x21-0x2F!"#$%&'()*+,-./0≠000≠0≠0000000
48 - 57 0x30-0x3901234567890≠000≠00≠0000≠0≠0
58 - 64 0x3a-0x40:;<=>?@0≠000≠0≠0000000
65 - 70 0x41-0x46ABCDEF0≠000≠00≠0≠0≠000≠0
71 - 90 0x47-0x5AGHIJKLMNOPQRSTUVWXYZ0≠000≠00≠0≠0≠0000
91 - 96 0x5B-0x60[\]^_`0≠000≠0≠0000000
97 -102 0x61-0x66abcdef0≠000≠00≠0≠00≠00≠0
103-122 0x67-0x7Aghijklmnopqrstuvwxyz0≠000≠00≠0≠00≠000
123-126 0x7B-0x7E{|}~0≠000≠0≠0000000
127 0x7F 削除文字 (DEL) ≠000000000000
close