PRB: STL string Class replace Function Does Not Work as ExpectedLast reviewed: July 24, 1997Article ID: Q168377 |
The information in this article applies to:
SYMPTOMSThe string::replace member function does not work as expected. This is because the same string object is used for modification and input. Many data manipulation routines do not check for overlapping or identical arguments, causing unexpected results.
RESOLUTIONCreate a temporary copy of the string as shown below:
s1.replace (1,2,string("c")); STATUSThis behavior is by design.
MORE INFORMATION
Steps to Reproduce BehaviorThe sample code below demonstrates the behavior reported in the SYMPTOMS section.
#include <iostream> #include <string> using namespace std ; void f1() { string s ("abcd"); s.replace (1,2,s,2,1); cout << "s (should be 'acd'): " << s << endl << endl; } int main () { f1();// prints "add" instead of "acd" return 0 ; } |
Keywords : STLIss
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |