vote up 3 vote down star

how can i replace "\r\n" in an std::string

flag

Um. What do you want to replace them with? And, maybe a little context would help, no? – dmckee Jan 27 at 17:03

5 Answers

vote up 6 vote down check

Use this :


    while ( str.find ("\r\n") != string::npos )
    {
    	str.erase ( str.find ("\r\n"), 2 );
    }

more efficient form is :


    string::size_type pos = 0; // Must initialize
    while ( ( pos = str.find ("\r\n",pos) ) != string::npos )
    {
    	str.erase ( pos, 2 );
    }
link|flag
Don't run the find twice! Store the position found in the conditional and use it in the body: while (size_type pos = str.find(...)) { str.manipulate(pos,...); }; – dmckee Jan 27 at 17:56
Hmmm...that still leaves something to be desired. Each iteration of the loop rescans the bit declared safe by the last pass. Define pos outside the loop and make it persistant: size_type pos = 0; while (pos = str.find("..",pos) )... – dmckee Jan 27 at 18:24
vote up 6 vote down

See Boost String Algorithms library.

link|flag
vote up 5 vote down

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.

#include <boost/algorithm/string.hpp>
#include <string>
#include <iostream>

int main()
{
 std::string str1 = "\r\nsomksdfkmsdf\r\nslkdmsldkslfdkm\r\n";
 boost::replace_all(str1, "\r\n", "Jane");
 std::cout<<str1;
}
link|flag
vote up 2 vote down

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

link|flag
vote up 0 vote down

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.

link|flag
If boost(headers only) isn't available you should rage until it is. If it stays unavailable, its probably not a place you want to work at imo(barring xyz crazy platform with zyx terrible C++ compiler) – Hippiehunter Jan 27 at 21:29

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.