Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,885 questions

51,811 answers

573 users

How to right trim a string in C++

1 Answer

0 votes
#include <string>
#include <iostream>

std::string &rtrim(std::string &s, const std::string &chars = "\t\n\v\f\r ") {
    s.erase(s.find_last_not_of(chars) + 1);
    return s;
}
 
int main() {
  std::string s = "    c python c++ java php   ";

  rtrim(s);
  
  std::cout << s;
}




/*
run:

    c python c++ java php

*/

 



answered Jul 9, 2020 by avibootz

Related questions

1 answer 85 views
85 views asked Jun 25, 2020 by avibootz
1 answer 125 views
125 views asked Aug 21, 2020 by avibootz
1 answer 150 views
1 answer 170 views
170 views asked Jul 11, 2020 by avibootz
1 answer 142 views
142 views asked Jul 11, 2020 by avibootz
1 answer 111 views
111 views asked Jul 10, 2020 by avibootz
1 answer 119 views
119 views asked Jul 10, 2020 by avibootz
...