someString[someRandomIdx] = 'g';

that will give me an error,

how do I achieve the above?

Edit:

yes it is of type 'string'

link|improve this question

69% accept rate
Immutabillity is a powerful tool. – Dykam Jul 22 '10 at 8:32
feedback

4 Answers

up vote 12 down vote accepted

If it is of type string then you can't do that because strings are immutable - they cannot be changed once they are set.

To achieve what you desire, you can use a StringBuilder

StringBuilder someString = new StringBuilder("someString");

someString[4] = 'g';

Update

Why use a string, instead of a StringBuilder? For lots of reasons. Here are some I can think of:

  • Accessing the value of a string is faster.
  • strings can be interned (this doesn't always happen), so that if you create a string with the same value then no extra memory is used.
  • strings are immutable, so they work better in hash based collections and they are inherently thread safe.
link|improve this answer
what is the difference between a string and a StringBuilder? i.e. why wouldn't I just use StringBuilders everywhere? – matt Jul 22 '10 at 7:37
for more information on the StringBuilder class: msdn.microsoft.com/en-us/library/system.text.stringbuilder.aspx – Matt Ellen Jul 22 '10 at 8:01
feedback

C# strings are immutable. You should create a new string with the modified contents.

 char[] charArr = someString.ToCharArray();
 charArr[someRandomIdx] = 'g'; // freely modify the array
 someString = new string(charArr); // create a new string with array contents.
link|improve this answer
feedback

Check out this article on how to modify string contents in C#. Strings are immutable so they must be converted into intermediate objects before they can be modified.

link|improve this answer
feedback

you can also use Insert() method e.g. somestring.Insert(index,data)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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