> Hello All,
>
[quoted text clipped - 6 lines]
> Can anybody tell me how to split this and insert this into a
> multidimensional array??
I would say:
First replace the \r\n by space.
Then use Split.
Adrian
> Hello All,
>
[quoted text clipped - 5 lines]
>
> Can anybody tell me how to split this
for each line
string[] values = line.Split(' ');
> and insert this into a
> multidimensional array??
DON'T use multidimensional arrays!
use something like
struct Person
{
public string Name;
public int Age;
public string Address;
}
Person p;
p.Name = values[0];
p.Age = values[1];
p.Address = values[2];

Signature
Help The New .Net Site! http://www.devbox4.net