Is it possible in C++ to replace part of a string with another string. Basically, I would like to do this
QString string("hello $name");
string.replace("$name", "Somename");
but I would like to use the Standard C++ libraries.
|
There's a function to find a substring within a string (
In response to a comment, I think
|
|||||||||||||||
|
|
Yes, you can do it, but you have to find the position of the first string with string's find() member, and then replace with it's replace() member.
If you are planning on using the Standard Library, you should really get hold of a copy of the book The C++ Standard Library which covers all this stuff very well. |
|||||||
|
|
|
You could try:
I haven't tried myself, just read the documentation on |
|||||
|
|
To have the new string returned use this:
If you need performance, here is an optimized function that modifies the input string, it does not create a copy of the string:
Tests:
Output:
|
||||
|
|
Ctag? – sbi Aug 5 '10 at 19:14