![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
Section contents
ce32base.oxh
<TBS>
result% = CharEos%:(char%)
Determines whether the character whose value is char%
is an end of string character..
char% |
A character value |
result% |
Returns True(-1) if this is the end of string character, otherwise returns False(0) |
char% = CharFold%:(char%)
Folds the character whose value is char%
..
char% |
A character value |
result% |
Returns the folded character |
bool% = CharIsAlpha%:(char%)
Determines whether the character whose value is char%
is an alphabetic character..
char% |
A character value |
bool% |
Returns TRUE (-1) if the character is an alphabetic character, otherwise it returns FALSE (0) |
bool% = CharIsAlphaDigit%:(char%)
Determines whether the character whose value is char%
is an alphabetic or numeric character..
char% |
A character value |
bool% |
Returns TRUE (-1) if the character is an alphabetic or numeric character, otherwise it returns FALSE (0) |
bool% = CharIsControl%:(char%)
Determines whether the character whose value is char%
is a control character..
char% |
A character value |
bool% |
Returns TRUE (-1) if the character is a control character, otherwise it returns FALSE (0) |
bool% = CharIsDigit%:(char%)
Determines whether the character whose value is char%
is a numeric character..
char% |
A character value |
bool% |
Returns TRUE (-1) if the character is a numeric character, otherwise it returns FALSE (0) |
bool% = CharIsGraphic%:(char%)
Determines whether the character whose value is char%
is a graphic character..
char% |
A character value |
bool% |
Returns TRUE (-1) if the character is a graphic character, otherwise it returns FALSE (0) |
bool% = CharIsHexDigit%:(char%)
Determines whether the character whose value is char%
is a hexadecimal character..
char% |
A character value |
bool% |
Returns TRUE (-1) if the character is a hexadecimal character, otherwise it returns FALSE (0) |
bool% = CharIsLower%:(char%)
Determines whether the character whose value is char%
is a lower case character..
char% |
A character value |
bool% |
Returns TRUE (-1) if the character is a lower case character, otherwise it returns FALSE (0) |
bool% = CharIsPrint%:(char%)
Determines whether the character whose value is char%
is a printable character..
char% |
A character value |
bool% |
Returns TRUE (-1) if the character is a printable character, otherwise it returns FALSE (0) |
bool% = CharIsPrint%:(char%)
Determines whether the character whose value is char%
is a punctuation character..
char% |
A character value |
bool% |
Returns TRUE (-1) if the character is a punctuation character, otherwise it returns FALSE (0) |
bool% = CharIsSpace%:(char%)
Determines whether the character whose value is char%
is a white space character..
char% |
A character value |
bool% |
Returns TRUE (-1) if the character is a white space character, otherwise it returns FALSE (0) |
bool% = CharIsUpper%:(char%)
Determines whether the character whose value is char%
is an upper case character..
char% |
A character value |
bool% |
Returns TRUE (-1) if the character is an upper case character, otherwise it returns FALSE (0) |
char% = CharLowerCase%:(char%)
Converts the character whose value is char%
to
lower case..
char% |
A character value |
char% |
Returns the lower case letter |
char% = CharUpperCase%:(char%)
Converts the character whose value is char%
to
upper case..
char% |
A character value |
char% |
Returns the upper case letter |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |