c:string:start

C++ Reference

Standard C String and Character

atofconverts a string to a double
atoiconverts a string to an integer
atolconverts a string to a long
isalnumtrue if a character is alphanumeric
isalphatrue if a character is alphabetic
iscntrltrue if a character is a control character
isdigittrue if a character is a digit
isgraphtrue if a character is a graphical character
islowertrue if a character is lowercase
isprinttrue if a character is a printing character
ispuncttrue if a character is punctuation
isspacetrue if a character is a space character
isuppertrue if a character is an uppercase character
isxdigittrue if a character is a hexidecimal character
memchrsearches an array for the first occurance of a character
memcmpcompares two buffers
memcpycopies one buffer to another
memmovemoves one buffer to another
memsetfills a buffer with a character
strcatconcatenates two strings
strchrfinds the first occurance of a character in a string
strcmpcompares two strings
strcollcompares two strings in accordance to the current locale
strcpycopies one string to another
strcspnsearches one string for any characters in another
strerrorreturns a text version of a given error code
strlenreturns the length of a given string
strncatconcatenates a certain amount of characters of two strings
strncmpcompares a certain amount of characters of two strings
strncpycopies a certain amount of characters from one string to another
strpbrkfinds the first location of any character in one string, in another string
strrchrfinds the last occurance of a character in a string
strspnreturns the length of a substring of characters of a string
strstrfinds the first occurance of a substring of characters
strtodconverts a string to a double
strtokfinds the next token in a string
strtolconverts a string to a long
strtoulconverts a string to an unsigned long
strxfrmconverts a substring so that it can be used by string comparison functions
tolowerconverts a character to lowercase
toupperconverts a character to uppercase