Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

how is it possible to replace a string in a string? This works fine:

string test = "Hello[REPLACE]abcde";

now i want to replace "[REPLACE]";

test = test.replace("[REPLACE]","test");

this works fine but how can i do it without setting the return value to the string?

test.replace("[REPLACE]","test"); sth like this 
share|improve this question
I don't understand what you are looking to do, can you explain? – Mark Kram Aug 4 '11 at 16:43
2  
Why do you need that? Remember string is immutable and you always need to create a new one if you are editing a string that already is in memory. – Bruno Costa Aug 4 '11 at 16:43

6 Answers

You can't, because string is immutable. It was designed so that any "changes" to a string would actually result in the creation of a new string object. As such, if you don't assign the return value (which is the "updated" string), you have effectively discarded the changes you wanted to make.

If you wanted to make in-place changes, you could in theory work directly with a char[], but that is dangerous, and should be avoided. Another option (as pointed out by Mr. Skeet below) is to use StringBuilder and its Replace() method. That being said, simple replacements like the one you've shown are quite fast, so you may not want to bother with a StringBuilder unless you'll be doing so quite often.

share|improve this answer

As mentioned by dlev, you can't do this with string as strings are immutable in .NET - once a string has been constructed, there's nothing you can do (excluding unsafe code or reflection) to change the contents. This makes strings generally easier to work with, as you don't need to worry about defensive copying, they're naturally thread-safe etc.

Its mutable cousin, however, is StringBuilder - which has a Replace method to perform an in-object replacement. For example:

string x = "Hello [first] [second] world";

StringBuilder builder = new StringBuilder(x);
builder.Replace("[first]", "1st");
builder.Replace("[second]", "2nd");

string y = builder.ToString(); // Value of y is "Hello 1st 2nd world"
share|improve this answer
Thanks alot jon :) you are my helper again very nice. – jeb Aug 4 '11 at 16:48

You can't. You have to assign the value as strings are immutable

http://msdn.microsoft.com/en-us/library/362314fe.aspx

share|improve this answer

You can't, strings are immutable in .NET

share|improve this answer

Strings in .NET are immutable, they cannot be edited in-line.

The closest you can get to in-line editing is to create a StringBuilder from a string, in-line fiddle with its contents and then get it to spit a string back out again. But this will still produce a new string rather than altering the original. It is a useful technique, though, to avoid generating lots of intermediary strings when doing lots of string fiddling, e.g. in a loop.

share|improve this answer

You can't, in C# strings are immutable. Something like this would violate that. You need to have the return type of string because the one you're working with cannot change.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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