名前空間
変種
操作

isgraph

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

指定された文字が図形的表現を持つ、つまり数字 (0123456789)、大文字 (ABCDEFGHIJKLMNOPQRSTUVWXYZ)、小文字 (abcdefghijklmnopqrstuvwxyz)、句読点 (!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~)、または現在の C のロケールが規定する任意の図形文字かどうか調べます。

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

目次

[編集]引数

ch - 分類する文字

[編集]戻り値

文字が図形的表現を持つ文字であれば非ゼロの値、そうでなければゼロ。

[編集]

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

出力:

In the default C locale, \xb6 is not graphical In ISO-8859-1 locale, \xb6 is graphical

[編集]参考文献

  • C11 standard (ISO/IEC 9899:2011):
  • 7.4.1.6 The isgraph function (p: 201-202)
  • C99 standard (ISO/IEC 9899:1999):
  • 7.4.1.6 The isgraph function (p: 182-183)
  • C89/C90 standard (ISO/IEC 9899:1990):
  • 4.3.1.5 The isgraph 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