名前空間
変種
操作

標準ライブラリヘッダ <cctype>

提供: cppreference.com
< cpp‎ | header
 
 
 

このヘッダは元々 C 標準ライブラリに <ctype.h> として存在していました。

このヘッダはヌル終端バイト文字列ライブラリの一部です。

関数

文字がアルファベットまたは数字かどうか調べます
(関数) [edit]
文字がアルファベットかどうか調べます
(関数) [edit]
文字が小文字かどうか調べます
(関数) [edit]
文字が大文字かどうか調べます
(関数) [edit]
文字が数字かどうか調べます
(関数) [edit]
文字が16進数字かどうか調べます
(関数) [edit]
文字が制御文字かどうか調べます
(関数) [edit]
文字が図形文字かどうか調べます
(関数) [edit]
文字がスペース文字かどうか調べます
(関数) [edit]
(C++11)
文字がブランク文字かどうか調べます
(関数) [edit]
文字が印刷文字かどうか調べます
(関数) [edit]
文字が句読点文字かどうか調べます
(関数) [edit]
文字を小文字に変換します
(関数) [edit]
文字を大文字に変換します
(関数) [edit]

[編集] 概要

namespace std {
  int isalnum(int c);
  int isalpha(int c);
  int isblank(int c);
  int iscntrl(int c);
  int isdigit(int c);
  int isgraph(int c);
  int islower(int c);
  int isprint(int c);
  int ispunct(int c);
  int isspace(int c);
  int isupper(int c);
  int isxdigit(int c);
  int tolower(int c);
  int toupper(int c);
}