how can i replace "\r\n" in an std::string
|
|
|||
|
|
|
Use this :
more efficient form is :
|
||||
|
|
|
See Boost String Algorithms library. |
||
|
|
|
|
don't reinvent the wheel, Boost String Algorithms is a header only library and I'm reasonably certain that it works everywhere. If you think the accepted answer code is better because its been provided and you don't need to look in docs, here.
|
||
|
|
|
|
First use find() to look for "\r\n", then use replace() to put something else there. Have a look at the reference, it has some examples: http://www.cplusplus.com/reference/string/string/find.html http://www.cplusplus.com/reference/string/string/replace.html |
||
|
|
|
|
Depending upon your company's policies, boost might not be available. Visual Studio and most Linux distros come with Standard Template Library, so an STL option is equally valid to the boost option above. |
||
|
