How to remove the last comma from the end of string in C++

1 Answer

0 votes
#include <iostream>

int main() {
    std::string s = "c,c++,java,python,";
    
    s[s.size() - 1] = 0;

    std::cout << s;
}




/*
run:

c,c++,java,python

*/

 



answered Apr 12, 2022 by avibootz

Related questions

1 answer 150 views
1 answer 129 views
1 answer 182 views
1 answer 155 views
1 answer 138 views
2 answers 186 views
2 answers 184 views
...