string line="abc def ghi jkl";
Split(' ');
abc<br /> def<br /> ghi<br /> jkl
abc <br /> jkl<br />
abc def ghi jkl
<pre lang="vb">abc def ghi jkl</pre>
string[] array = line.split(' '); console.writeline(array[0]); console.writeline(array[3]);
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)