System::Char::IsControl メソッド

Char::IsControl(char_t) method

指定された文字が Unicode 制御文字として分類されるかどうかを判定します。

static bool System::Char::IsControl(char_t c)
パラメーター説明
cchar_tテスト対象の文字

ReturnValue

指定された文字が Unicode の制御文字である場合は true、そうでない場合は - false

参照

Char::IsControl(const char_t *, int) method

指定された文字バッファ内の指定インデックスにある文字が Unicode 制御文字として分類されるかどうかを判定します。

static bool System::Char::IsControl(const char_t *str, int idx)
パラメーター説明
strconst char_t *文字バッファの先頭へのポインタ
idxintテスト対象の文字がある、指定バッファ内のゼロベースインデックス

ReturnValue

指定されたインデックスにある文字が Unicode の制御文字である場合は true、そうでない場合は - false

参照