String Operations

Function Header File Page Description
strcasecmp() strings.h strcasecmp() — Compare Strings without Case Sensitivity Compares strings without case sensitivity.
strcat() string.h strcat() — Concatenate Strings Concatenates two strings.
strchr() string.h strchr() — Search for Character Locates the first occurrence of a specified character in a string.
strcmp() string.h strcmp() — Compare Strings Compares the value of two strings.
strcmpi() string.h strcmpi() - Compare Strings Without Case Sensitivity Compares the value of two strings without regard to case.
strcoll() string.h strcoll() — Compare Strings Compares the locale-defined value of two strings.
strcpy() string.h strcpy() — Copy Strings Copies one string into another.
strcspn() string.h strcspn() — Find Offset of First Character Match Finds the length of the first substring in a string of characters not in a second string.
strdup() string.h strdup - Duplicate String Duplicates a string.
strfmon() string.h strfmon() — Convert Monetary Value to String Converts monetary value to string.
strftime() time.h strftime() — Convert Date/Time to String Converts date and time to a formatted string.
stricmp() string.h stricmp() - Compare Strings without Case Sensitivity Compares the value of two strings without regard to case.
strlen() string.h strlen() — Determine String Length Calculates the length of a string.
strncasecmp() strings.h strncasecmp() — Compare Strings without Case Sensitivity Compares strings without case sensitivity.
strncat() string.h strncat() — Concatenate Strings Adds a specified length of one string to another string.
strncmp() string.h strncmp() — Compare Strings Compares two strings up to a specified length.
strncpy() string.h strncpy() — Copy Strings Copies a specified length of one string into another.
strnicmp() string.h strnicmp - Compare Substrings Without Case Sensitivity Compares the value of two substrings without regard to case.
strnset() string.h strnset - strset - Set Characters in String Sets character in a string.
strpbrk() string.h strpbrk() — Find Characters in String Locates specified characters in a string.
strptime() time.h strptime()— Convert String to Date/Time Converts string to formatted time.
strrchr() string.h strrchr() — Locate Last Occurrence of Character in String Locates the last occurrence of a character within a string.
strspn() string.h strspn() —Find Offset of First Non-matching Character Locates the first character in a string that is not part of specified set of characters.
strstr() string.h strstr() — Locate Substring Locates the first occurrence of a string in another string.
strtok() string.h strtok() — Tokenize String Locates a specified token in a string.
strtok_r() string.h strtok_r() — Tokenize String (Restartable) Locates a specified token in a string. (Restartable version of strtok()).
strxfrm() string.h strxfrm() — Transform String Transforms strings according to locale.
wcsftime() wchar.h wcsftime() — Convert to Formatted Date and Time Converts to formatted date and time.
wcsptime() wchar.h wcsptime()— Convert Wide Character String to Date/Time Converts string to formatted time.
wcsstr() wchar.h wcsstr() — Locate Wide-Character Substring Locates a wide-character substring.
wcstok() wchar.h wcstok() — Tokenize Wide-Character String Tokenizes a wide-character string.


[ Top of Page | Previous Page | Next Page | Contents | Index ]