Hi,
In C#, there is two methods...
Using StringBuffer.Replace method and
using String.Repalce.method
==========
Example:::
==========
String str="SubhenduDe";
str.Replace("bhen","asdf");
__________________________
StringBuffer str=new StringBuffer();
str.append("SubhenduDe");
str.Replace("bhen","asdf");
Subhendu De
subhendude@gmail.com
Software Developer
New Delhi, India