Answered step by step
Verified Expert Solution
Question
1 Approved Answer
C++ A substring refers to a string that is a continuous segment of a larger string. The list of all substrings of the string apple
C++
A substring refers to a string that is a continuous segment of a larger string. The list of all substrings of the string "apple" would be: "apple "appl, "pple" "app", "ppl, "ple" Write a function that takes in a long string and a candidate substring and returns the number of times the substring occurred in the longer string Your function should take two parameters in this order: o a string parameter for the substring a string parameter for the longer string Your function should return the number of times the substring occurs in the string Your function should not print anything Your function MUST be named getMatchCount Examples: "si, "mississippi" 2 "ipp", "mississippi" >1 Edge cases: Make sure your function can handle the following edge cases: substring is empty->return-1 string is empty return- substring is longer than string >return-2Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started