string sep= "abc:xyz:100:200:300"; string[] arrsep = new string[0]; char[] seprator= { ':' }; arrsep = sep.Split(seprator); for (int i = 0; i< arrsep.Length; i++) { Response.Write(arrsep[i] + "<br>"); }