spliting string...need help
-
i need to convert a string to an array. ex: "Code Project" i want the result to be split and converted to an array str(0) = "C" str(1) = "o" str(2) = "d" str(3) = "e" str(4) = " " str(5) = "P" str(6) = "r" str(7) = "o" ... etc the problem is how to split the string to make it into an array? -TheCardinal
-
i need to convert a string to an array. ex: "Code Project" i want the result to be split and converted to an array str(0) = "C" str(1) = "o" str(2) = "d" str(3) = "e" str(4) = " " str(5) = "P" str(6) = "r" str(7) = "o" ... etc the problem is how to split the string to make it into an array? -TheCardinal
http://msdn2.microsoft.com/en-us/library/system.string.tochararray.aspx[^]?
Mark Churchill Director Dunn & Churchill
-
http://msdn2.microsoft.com/en-us/library/system.string.tochararray.aspx[^]?
Mark Churchill Director Dunn & Churchill
Just what i wanted. thanks Mark :) TheCardinal