Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

C++ Exercises: Check if a given string begins with 'abc' or 'xyz'

C++ Basic Algorithm: Exercise-74 with Solution

Write a C++ program to check if a given string begins with 'abc' or 'xyz'. If the string begins with 'abc' or 'xyz' return 'abc' or 'xyz' otherwise return the empty string.

Sample Solution:

C++ Code :

#include <iostream>
using namespace std;

string test(string s1) 
        {
          if (s1.substr(0,3) == "abc")
            {
                return "abc";
            }
            else if (s1.substr(0,3) == "xyz")
            {
                return "xyz";
            }
            else
            {
                return "";
            }
        }
        
int main() 
 {
  cout << test("abc") << endl;  
  cout << test("abcdef") << endl; 
  cout << test("C") << endl;  
  cout << test("xyz") << endl;  
  cout << test("xyzsder") << endl;  
  return 0;    
}

Sample Output:

abc
abc

xyz
xyz

Pictorial Presentation:

C++ Basic Algorithm Exercises: Check if a given string begins with 'abc' or 'xyz'.

Flowchart:

Flowchart: Check if a given string begins with 'abc' or 'xyz'.

C++ Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a C++ program to create a new string from a given string after swapping last two characters.
Next: Write a C++ program to check whether the first two characters and last two characters of a given string are same.

What is the difficulty level of this exercise?