Table 23-5 lists the OCI character classification functions that are described in this section.
Table 23-5 OCI Character Classification Functions
Function | Purpose |
---|---|
Test whether the wide character is a letter or a decimal digit |
|
Test whether the wide character is a letter |
|
Test whether the wide character is a control character |
|
Test whether the wide character is a decimal digital character |
|
Test whether the wide character is a graph character |
|
Test whether the wide character is a lowercase character |
|
Test whether the wide character is a printable character |
|
Test whether the wide character is a punctuation character |
|
Test whether the wide character is a single-byte character when converted to multibyte |
|
Test whether the wide character is a space character |
|
Test whether the wide character is an uppercase character |
|
Test whether the wide character is a hexadecimal digit |
Purpose
Tests whether a wide character is a graph character. A graph character is a character with a visible representation and normally includes alphabetic letters, decimal digits, and punctuation.
Syntax
boolean OCIWideCharIsGraph ( void *hndl, OCIWchar wc );
Parameters
Returns
TRUE
or FALSE.
Purpose
Tests whether a wide character is a single-byte character when converted to multibyte.
Syntax
boolean OCIWideCharIsSingleByte ( void *hndl, OCIWchar wc );
Parameters
Returns
TRUE
or FALSE.
Purpose
Tests whether a wide character is a space character. A space character causes white space only in displayed text (for example, space, tab, carriage return, new line, vertical tab, or form feed).
Syntax
boolean OCIWideCharIsSpace ( void *hndl, OCIWchar wc );
Parameters
Returns
TRUE
or FALSE.