String Handling
Suppose there is a String.
Say, String test="My name is debasish";
Now I want to edit any one character.
Say, I want to edit the seventh character, e to c.
How can I achieve this?
One method is to change the string to an character array.
But I want to know if there is any other way to achieve this...
|