共用方式為


wctype

判斷寬字元程式碼的排序規則。

wctype_t wctype(
   const char * property 
);

參數

  • property
    String 屬性

傳回值

如果目前地區設定的 LC_CTYPE 分類不定義名稱符合 property屬性字串的排序規則,函式會傳回零。 否則,會傳回非零值適合做為第二個引數的後續對 towctrans

備註

函式會判斷寬字元程式碼的排序規則。 下列在所有地區設定的呼叫有相同的行為 (但實作可以定義其他分類規則是在「C」地區設定):

功能

相同

iswalnum( c )

iswctype( c, wctype( "alnum" ) )

iswalpha( c )

iswctype( c, wctype( "alpha" ) )

iswcntrl( c )

iswctype( c, wctype( "cntrl" ) )

iswdigit( c )

iswctype( c, wctype( "digit" ) )

iswgraph( c )

iswctype( c, wctype( "graph" ) )

iswlower( c )

iswctype( c, wctype( "lower" ) )

iswprint( c )

iswctype( c, wctype( "print" ) )

iswpunct( c )

iswctype( c, wctype( "punct" ) )

iswspace( c )

iswctype( c, wctype( "space" ) )

iswupper( c )

iswctype( c, wctype( "upper" ) )

iswxdigit( c )

iswctype( c, wctype( "xdigit" ) )

需求

常式

必要的標頭

wctype

<wctype.h>

如需其他相容性資訊,請參閱<簡介>中的相容性

請參閱

參考

資料轉換

setlocale、_wsetlocale