string str1="dotnet"; string str2 = "FUNDA"; string res=""; for (int i = 0; i < str1.Length; i++) { char x; if (i == str2.Length) x=' '; else x=str2[i]; res =res+ str1[i] + x; } Response.Write(res.Trim().ToString());
Thanks, Sanjay
gowthaman8870226416
Login to post response