wctype_t wctype (const char* property);
*property* 作為字串傳入 | 描述 | 等效函式 |
---|---|---|
"alnum" | 字母數字字元 | iswalnum |
"alpha" | 字母字元 | iswalpha |
"blank" | 空白字元 | iswblank |
"cntrl" | 控制字元 | iswcntrl |
"digit" | 十進位制數字字元 | iswdigit |
"graph" | 具有圖形表示的字元 | iswgraph |
"lower" | 小寫字母字元 | iswlower |
"print" | 可列印字元 | iswprint |
"punct" | 標點符號字元 | iswpunct |
"space" | 空白字元 | iswspace |
"upper" | 大寫字母字元 | iswupper |
"xdigit" | 十六進位制數字字元 | iswxdigit |
|
|
TEST STRING. |