I was looking for a PHP-like str_replace() for C/C++, but I found only solutions which allocate/reallocate buffer for the result. In embedded environment, it's not always possible, there are no memory for strings or there's even no malloc(). So I'm looking for a function, which use the same buffer, similar to strncat(), where the max. buffer size is given as parameter:
void str_replace(char* search,char* replace,char* subject,int maxBufferSize);
The trick is, that I've just written one, which I will post within a minute. Yes, this is the typical case of answering my own question, but I've read that it's legal.
Anyway, I will push accept button on the best answer. My solution is tested and hopefully works well, but there is room for improvement. There will be a better answer, I am sure. I can wait.
std::replace. – chris Feb 1 at 19:26std::replacewon't work here. It can replace only single entries (in this case characters). – Billy ONeal Feb 1 at 20:47std::stringmembers orboost::replace_all:) – chris Feb 1 at 20:51