How to erase character from string (delete N character from specific index) in C++

1 Answer

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

using std::cout;
using std::endl;
using std::string;

int main()
{
	string s("c++ programming");

	s.erase(4, 3);

	cout << s << endl;

	return 0;
}

/*
run:

c++ gramming

*/

 



answered May 8, 2018 by avibootz
edited May 8, 2018 by avibootz

Related questions

1 answer 187 views
1 answer 163 views
1 answer 197 views
2 answers 226 views
1 answer 164 views
2 answers 187 views
2 answers 267 views
...