Character

Character

Methods


char_input(char)


Represents a single character to be stored in a variable or used.

Check out the third party documentation for a more in depth explanation.

Parameters:
Name Type Description
char

a single character

Code Equivalent:
'char'

char_is_alnum(char)


Returns true or false if the given character is alphanumeric.

Check out the third party documentation for a more in depth explanation.

Parameters:
Name Type Description
char

character to check

Code Equivalent:
isalnum(char)

char_is_alpha(char)


Returns true or false if the given character is alphabetical.

Check out the third party documentation for a more in depth explanation.

Parameters:
Name Type Description
char

character to check

Code Equivalent:
isalpha(char)

char_is_cntrl(char)


Returns true or false if the given character is a control character.

Check out the third party documentation for a more in depth explanation.

Parameters:
Name Type Description
char

character to check

Code Equivalent:
iscntrl(char)

char_is_digit(char)


Returns true or false if the given character is a digit.

Check out the third party documentation for a more in depth explanation.

Parameters:
Name Type Description
char

character to check

Code Equivalent:
isdigit(char)

char_is_graph(char)


Returns true or false if the given character has graphical representation.

Check out the third party documentation for a more in depth explanation.

Parameters:
Name Type Description
char

character to check

Code Equivalent:
isgraph(char)

char_is_lower(char)


Returns true or false if the given character is lower case.

Check out the third party documentation for a more in depth explanation.

Parameters:
Name Type Description
char

character to check

Code Equivalent:
islower(char)

char_is_print(char)


Returns true or false if the given character is printable.

Check out the third party documentation for a more in depth explanation.

Parameters:
Name Type Description
char

character to check

Code Equivalent:
isprint(char)

char_is_punct(char)


Returns true or false if the given character is a punctuation character.

Check out the third party documentation for a more in depth explanation.

Parameters:
Name Type Description
char

character to check

Code Equivalent:
ispunct(char)

char_is_space(char)


Returns true or false if the given character is a space.

Check out the third party documentation for a more in depth explanation.

Parameters:
Name Type Description
char

character to check

Code Equivalent:
isspace(char)

char_is_upper(char)


Returns true or false if the given character is upper case.

Check out the third party documentation for a more in depth explanation.

Parameters:
Name Type Description
char

character to check

Code Equivalent:
isupper(char)

char_is_xdigit(char)


Returns true or false if the given character is a hexadecimal digit.

Check out the third party documentation for a more in depth explanation.

Parameters:
Name Type Description
char

character to check

Code Equivalent:
isxdigit(char)

char_to_lower(char)


Returns a lower case version of the given character.

Check out the third party documentation for a more in depth explanation.

Parameters:
Name Type Description
char

character to convert to lower case

Code Equivalent:
tolower(char)

char_to_upper(char)


Returns a upper case version of the given character.

Check out the third party documentation for a more in depth explanation.

Parameters:
Name Type Description
char

character to convert to upper case

Code Equivalent:
toupper(char)