MasterACE14 Posted January 12, 2012 Share Posted January 12, 2012 I'm having trouble finding the last 3 characters of a string. I have the following: string something; char result; string last3; something = "12345"; result = something.length()-3; last3 = something.substr(result, 0); cout << last3 << endl; I want it to output '345', but I'm getting '2'. Any help is appreciated, thanks. Regards, Ace Quote Link to comment Share on other sites More sharing options...
MasterACE14 Posted January 12, 2012 Author Share Posted January 12, 2012 sorry, posted in wrong sub-forum. Quote Link to comment Share on other sites More sharing options...
MasterACE14 Posted January 13, 2012 Author Share Posted January 13, 2012 never mind, I figured it out. #include <iostream> #include <string> using namespace std; int main() { string text = "I do like the seaside"; cout << "Original: " << text << endl; cout << "Last character: " << text.at( text.size() - 1 ) << endl; cout << "Last 3 characters: " << text.substr( text.size() - 3 ) << endl; system("pause"); return 0; } Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.