So, let's say I have an array of strings
string[] stringArray = new string[5] { "3 Three", "8 Eight", "6 Six", "13 Thirteen", "24 Twenty Four";
I want to select the first numbers within each string element and sort this array in ascending order' I want the outcome to be when using:
Console.Writeline(String.Format("{0}, {1} and {2} are the lowest elements", stringArray[0], stringArray[1], stringArray[2]))
Displaying: '3 Three, 6 Six and 8 Eight are the lowest elements'