string addslashes ( string $str ) Returns a string with backslashes before characters that need to be quoted in database queries etc. These characters are single quote ('), double quote ("), backslash () and NUL (the NULL byte).

I'm working on a c++ equivalent of this php function. Right now my function uses nested replace calls, where I replace \ with \\ and ' with \'. It's not pretty at all and it's very slow too.

What is the best solution using only the standard c++ libs and functions? I mean the absolute fastest way.

link|improve this question

40% accept rate
feedback

1 Answer

up vote 1 down vote accepted
  1. Go over the string in a single pass (for loop) and switch on each character.
  2. When encountering a character that needs escaping, push a backslash into the output buffer
  3. Push current character into the output buffer.

Use a std::ostringstream for the output buffer.

This is very efficient (single pass, buffered output) and straightforward to implement. To make it yet more efficient, directly use a std::string as the output buffer, append the characters using push_back, and reserve a sufficiently large capacity (e.g. 1.5 * input.length()) in front of the loop.

link|improve this answer
This may be made faster by avoiding reallocations by making the output buffer of a correct size, for instance stream.str().reserve(input_len*1.5) if you know the length upfront. It's also possible to do first pass on input to count the output string's length, then do a second pass with the output of required size. IDK if saving on reallocations would compensate the second pass. – Kos Jul 30 '11 at 14:14
@Kos stream.str().reserve(…) is a nonsense operation, since str() returns a copy. I don’t know how to reserve capacity in a stringstream. Of course, you could directly push_back into a string with a reserved capacity. – Konrad Rudolph Jul 30 '11 at 14:22
feedback

Your Answer

 
or
required, but never shown

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