0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【C++Builder】C ランタイムライブラリリファレンス (ctype.h)

Last updated at Posted at 2024-03-04

文字操作 (Character Type)

ヘッダ
ファイル
ctype.h
規格 ANSI C (C89) / C90
概要 文字の分類及び文字の変換に有用な幾つかの関数を宣言する。

ワイド文字対応のライブラリ (wctype.h) もあります。

プラグマ

マクロ

引数付きマクロ

関数

名前 機能
isalnum() 英数字かどうかをテストします
isalpha() 英文字かどうかをテストします
isblank() 1 ブランク文字 (水平タブ, 空白) かどうかをテストします
iscntrl() 制御文字かどうかをテストします
isdigit() 10 進数文字かどうかをテストします
isgraph() 表示可能文字かどうかをテストします (空白を含まない)
islower() 小文字かどうかをテストします
isprint() 表示可能文字かどうかをテストします (空白を含む)
ispunct() 区切り文字かどうかをテストします
isspace() 空白文字かどうかをテストします
isupper() 大文字かどうかをテストします
isxdigit() 16 進数文字かどうかをテストします
tolower() 文字を小文字に変換します
toupper() 文字を大文字に変換します

資料


⇦ インデックスへ

  1. C99 で追加された。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?