I am using the old Borland C++ Builder from around 1998. I often have problems with the string handling. I have not found a good summary of the string routines in the help files. On the Internet I find some information, but the routines quoted are often not found. (Do I fail to include them or are they from later versions??) Right now I have problems with "replace".
#include "string.h"
#include <SysUtils.hpp>
tmpstr = StringReplace( tmpstr, "target", "replacement", TReplaceFlags() );
For example, the code above leads to: "Call to undefined function StringReplace"
Grateful for advice, thanks.