Hi....
How to replace collection value like i have some value in string i want to replace it . Please define how to replace collection value?
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
VulpesPosted Aug 25, 2014, 1:24 PM
http://msdn.microsoft.com/en-us/library/system.string.replace(v=vs.110).aspx
For example:
string s = "abcabc";
s = s.Replace("abc", "def"); // string is now "defdef"