Word Replacement BugI am writing a program that is replacing words in vector<english> with vector<pirate> in a user inpu...
Replacing words in a stringI want to replace a word. I want "hi world" to become "hello world". In this example hi is the word.
Replacing words in a stringI want to write a program that replaces words in a string. For example, if the user inputs "hi" as a...
vowels using find_first_of()Using the function find_first_of(), I want to make a program that would count the number of vowels o...
acronyms using find()Using the find() function, how do I find the acronym of an inputted string? The program would find t...