str.replace("","");
string str = "abc1"; str=str.Replace("1", "d");
string str = "abc1";str=str.Replace('1', 'd');
replace