I am mainly looking for a standard function from the C++ library that will help me searching inside a string for a character then print out the rest of the string starting from that found character. I have the following scenario:
#include <string>
using std::string;
int main()
{
string myFilePath = "SampleFolder/SampleFile";
// 1. Search inside the string for the '/' character.
// 2. Then print everything after that character till the end of the string.
// The Objective is: Print the file name. (i.e. SampleFile).
return 0;
}
Thanks in advance for your help. Please if you can help me completing the code, i would be grateful.