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,909 questions

51,841 answers

573 users

How to left trim a string in C++

1 Answer

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

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

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




/*
run:

c python c++ java php

*/

 



answered Jul 9, 2020 by avibootz

Related questions

1 answer 126 views
126 views asked Jun 24, 2020 by avibootz
2 answers 170 views
170 views asked Aug 21, 2020 by avibootz
1 answer 142 views
1 answer 131 views
131 views asked Jul 11, 2020 by avibootz
1 answer 151 views
151 views asked Jul 11, 2020 by avibootz
1 answer 121 views
121 views asked Jul 10, 2020 by avibootz
1 answer 123 views
123 views asked Jul 10, 2020 by avibootz
...