Search Results

Search found 3 results on 1 pages for 'stlstring'.

Page 1/1 | 1 

  • What's the best way to trim std::string

    - by Milan Babuškov
    I'm currently using the following code to right-trim all the std::strings in my programs: std::string s; s.erase(s.find_last_not_of(" \n\r\t")+1); It works fine, but I wonder if there are some end-cases where it might fail? Of course, answers with elegant alternatives and also left-trim solution are welcome.

    Read the article

1