Program List - Strings
- Print string character by character
- Calculate length of the string without using library functions
- Count uppercase and lowercase characters in a string
- Count various types of characters in a string
- Count total number of words in a sentence
- print all vowels and consonants characters separately
- Convert string in uppercase to lowercase without using library function
- Convert string in lowercase to uppercase without using library function
- Toggle case of all characters of string
- Frequency of a character in a sting
- Find frequency of all characters in a string
- Find maximum occurring character in a sentence
- Find minimum occurring character in a sentence
- Find first occurrence of a character in the string
- Find last occurrence of a character in the string
- Print all the indexes of a particular character in a string
- Find the first capital letter in a given string
- Find the first small letter in a given string
- Split a string into words
- Find first occurrence of a word in a string
- Find last occurrence of a word in a string
- Search all occurrences of a word in a string
- Find the frequency of all words in a string
- Print the length of each word in a string
- Find the largest and smallest word in a string
- Extract substring from a string
- Substring is present in a string or not
- Find the first occurrence of a substring in a string
- Find all occurrences of a substring in a string
- Swap two strings
- Swap two strings using pointers
- Sort the words in a sentence
- Sort characters of a string
- Insert character at a location in a string
- Insert word at a location in a string
- Insert sub-string at a position
- Delete character from a particular index from the string
- Delete first occurrence of character from the string
- Delete last occurrence of character from the string
- Delete all occurrences of character from the string
- Remove all vowels from a string
- Remove all alphabets from an alphanumeric string
- Remove all spaces from a given string
- Trim leading white space characters from given string
- Trim trailing white space characters from given string
- Trim both leading and trailing white space characters from given string
- Remove all extra blank spaces from given string
- Remove all characters in a string except alphabet
- Remove all duplicate characters in a string
- Remove first character of each word from a string
- Remove all characters in first string which are present in second string