You could use an array..
String[] myArray = cmd1.Result.Split(new char[] { '\r', '\n' }, StringSplitOptions.RemoveEmptyEntries);
This will split the array based on carriage returns and new lines etc
String[] myArray = cmd1.Result.Split(new char[] { '\r', '\n' }, StringSplitOptions.RemoveEmptyEntries);
This will split the array based on carriage returns and new lines etc