I have a variable that holds string, lets say like this:
string str = "/a/b/1/cdd/d.jpg"
And I have string format, lets say like this:
string frmt = "/a/b/{0}/be/"
Now, I want to use frmt to replace chars in str, something like that:
string newstr = str.Replace(frmt);
//result should be: /a/b/1/be/d.jpg
Does the .net framework has something like that? How can it be done easily?
Thanks.