C++: insert char to a string

做~自己de王妃 提交于 2019-11-27 21:59:59

There are a number of overloads of std::string::insert. The overload for inserting a single character actually has three parameters:

string& insert(size_type pos, size_type n, char c);

The second parameter, n, is the number of times to insert c into the string at position pos (i.e., the number of times to repeat the character. If you only want to insert one instance of the character, simply pass it one, e.g.,

someString.insert(somePosition, 1, myChar);

Simplest is to provide yourself with a function that turns a character into a string. There are lots of ways of doing this, such as

string ToStr( char c ) {
   return string( 1, c );
}

Then you can simply say:

someString.insert(somePosition, ToStr(myChar) );

and use the function in other cases where you want a string but have a char.

Prasoon Saurav
  1. Everything seems to be compiling successfully, but program crashes the gets to
conversion >> myCharInsert;

The problem is that you are trying to dereference(access) myCharInsert(declared as a char* ) which is pointing to a random location in memory(which might not be inside the user's address space) and doing so is Undefined Behavior (crash on most implementations).

EDIT

To insert a char into a string use string& insert ( size_t pos1, size_t n, char c ); overload.

Extra

To convert char into a std::string read this answer

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!