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.

link|improve this question

72% accept rate
feedback

4 Answers

up vote 3 down vote accepted

You could extract a substring from the string starting from the last /, but to be most efficient (that is, to avoid making a needless copy of the data you want to print), you can use string::rfind as well as ostream::write:

string myFilePath = "SampleFolder/SampleFile";

size_t slashpos = myFilePath.rfind('/');

if (slashpos != string::npos) // make sure we found a '/'
    cout.write(myFilePath.data() + slashpos + 1, myFilePath.length() - slashpos);
else
    cout << myFilePath;

If you needed to extract the file name and use it later instead of just print it immediately, then bert-jan's or xavier's answers would be good.

link|improve this answer
4  
Check for npos would make sense. – Michael Krelin - hacker Nov 26 '11 at 9:52
@MichaelKrelin-hacker good idea, fixed, thanks. – Seth Carnegie Nov 26 '11 at 9:55
1  
Thanks for such an accurate clear answer. – CompilingCyborg Nov 26 '11 at 10:04
feedback

Try

size_t pos = myFilePath.rfind('/');
string fileName = myFilePath.substr(pos);
cout << fileName;
link|improve this answer
2  
pos should probably be size_t – Fish Nov 26 '11 at 9:57
Of course! @Fish is 100% right. – xavier Nov 26 '11 at 10:00
90%. Ideally, it's std::string::size_type ;-) – Michael Krelin - hacker Nov 26 '11 at 10:13
Well, yes :) But isn't size_type defined as size_t in, like, every implementation of standard library? Obviously, just because it is defined, it can be changed to anything in future implementations... Sweet c++... – xavier Nov 26 '11 at 10:24
feedback
 std::cout << std::string(myFilePath, myFilePath.rfind("/") + 1);
link|improve this answer
1  
This is the first slash, not the last. – Michael Krelin - hacker Nov 26 '11 at 9:53
1  
You must also check if the slash is found anyway. – bert-jan Nov 26 '11 at 10:00
feedback

You might use _splitpath() see http://msdn.microsoft.com/en-us/library/e737s6tf.aspx form MSDN.

You can split paths into components with this STD RTL function.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.