C++ Help.  "qwerty" is a string commonly found in weak passwords. Remove all occurrences of "qwerty" from secretStr. Then, assign lengthStr with the length of secretStr. Ex: If the input is qwertyvk*M7$gKXhJ%P9qwerty, then the output is: Remaining string: vk*M7$gKXhJ%P9 Length: 14 Note: string.find(item) returns the index of the first occurrence of item in string. If no occurrence is found, then the function returns string::npos. string.replace(indx, num, subStr) replaces characters at indices indx to indx+num-1 with a copy of subStr. Code provided to complete: #include #include using namespace std; int main() {    string secretStr;    int index;     int lengthStr;        cin >> secretStr;    index = 0;     lengthStr = 0;    /* Your code goes here */    cout << "Remaining string: " << secretStr << endl;     cout << "Length: " << lengthStr << endl;        return 0; }

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter7: Characters, Strings, And The Stringbuilder
Section: Chapter Questions
Problem 9PE
icon
Related questions
Question

C++ Help. 

"qwerty" is a string commonly found in weak passwords. Remove all occurrences of "qwerty" from secretStr. Then, assign lengthStr with the length of secretStr.

Ex: If the input is qwertyvk*M7$gKXhJ%P9qwerty, then the output is:

Remaining string: vk*M7$gKXhJ%P9 Length: 14

Note:

  • string.find(item) returns the index of the first occurrence of item in string. If no occurrence is found, then the function returns string::npos.
  • string.replace(indx, num, subStr) replaces characters at indices indx to indx+num-1 with a copy of subStr.

Code provided to complete:

#include <iostream>
#include <string>
using namespace std;

int main() {
   string secretStr;
   int index;
    int lengthStr;
   
   cin >> secretStr;
   index = 0;
    lengthStr = 0;

   /* Your code goes here */

   cout << "Remaining string: " << secretStr << endl;
    cout << "Length: " << lengthStr << endl;
   
   return 0;
}

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
Problems on Dynamic Programming
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT