Basically lets say I have used this:
string[] result = File.ReadAllText("C:\\file.txt");
Inside the .txt file is the following words/values (case sensitive):
Zack 2 5 5
Ben 5 3 4
Dom 2 4 6
Currently I know whatever is read will be stored in the string array and it includes the name and numbers.
How do I split them so that the names are in one array and the numbers are converted into int array? Basically separating the numbers and names.