Whats the most efficient way of removing a 'newline' from a std::string?
|
|
|||||||
|
|
|
If its anywhere in the string than you can't do better than O(n). And the only way is to search for '\n' in the string and erase it.
For more newlines than:
It erases all the newlines once. |
||||||
|
|
|
If the newline is expected to be at the end of the string, then:
If the string can contain many newlines anywhere in the string:
|
||||||||
|
|
|
You should use the erase-remove idiom, looking for |
||
|
|
|
|
Use std::algorithms. This question has some suitably reusable suggestions Remove spaces from std::string in C++ |
||
|
|
|
|
|
||
|
|
|
|
The code removes all newlines from the string O(N) implementation best served without comments on SO and with comments in production.
|
||
|
|
|
|
The behavior of std::remove may not quite be what you'd expect. See an explanation of it here. |
||||||
|
|
|
or (removes several newlines at the end)
|
||
|
|
|
|
All these answers seem a bit heavy to me. If you just flat out remove the '\n' and move everything else back a spot, you are liable to have some characters slammed together in a weird-looking way. So why not just do the simple (and most efficient) thing: Replace all '\n's with spaces?
There may be ways to improve the speed of this at the edges, but it will be way quicker than moving whole chunks of the string around in memory. |
|||
|
|
