728x90
728x170
*[header][C library] cwctype (wctype.h)
<cwctype> (wctype.h)
Wide character type
For more info on how the standard ASCII character set is classified using the "C" locale, see <cctype>.
Functions
Character classification functions
They check whether the character passed as parameter belongs to a certain category:- iswalnum
- Check if wide character is alphanumeric (function )
- iswalpha
- Check if wide character is alphabetic (function )
- iswblank
- Check if wide character is blank (function )
- iswcntrl
- Check if wide character is a control character (function )
- iswdigit
- Check if wide character is decimal digit (function )
- iswgraph
- Check if wide character has graphical representation (function )
- iswlower
- Check if wide character is lowercase letter (function )
- iswprint
- Check if wide character is printable (function )
- iswpunct
- Check if wide character is punctuation character (function )
- iswspace
- Check if wide character is a white-space (function )
- iswupper
- Check if wide character is uppercase letter (function )
- iswxdigit
- Check if wide character is hexadecimal digit (function )
Character conversion functions
Two functions that convert between letter cases:- towlower
- Convert uppercase wide character to lowercase (function )
- towupper
- Convert lowercase wide character to uppercase (function )
Extensible classification/conversion functions
- iswctype
- Check if wide character has property (function )
- towctrans
- Convert using transformation (function )
- wctrans
- Return character transformation (function )
- wctype
- Return character property (function )
Types
- wctrans_t
- Wide character transformation (type )
- wctype_t
- Wide character type (type )
- wint_t
- Wide character integral type (type )
Constants
- WEOF
- Wide End-of-File (constant )
728x90
그리드형(광고전용)
'Programming > C++' 카테고리의 다른 글
string형 변수 길이 구하기 (0) | 2017.11.15 |
---|---|
vector 안의 원소들의 순서를 역순으로 바꾸는 방법 (0) | 2017.11.12 |
정렬 알고리즘의 시간 복잡도 비교 (0) | 2017.11.08 |
데이터 형식 범위 (0) | 2017.11.08 |
[header][C library] cwchar (wchar.h) (0) | 2017.11.08 |
[header][C library] cuchar (uchar.h) (C++11) (0) | 2017.11.08 |
[header][C library] ctime (time.h) (0) | 2017.11.08 |
[header][C library] ctgmath (tgmath.h) (C++11) (0) | 2017.11.08 |