I have read a lot of guides, maybe I just don't get it.
I have a string and converted it to an array. Now I need to arrange its content in a descending order based on the last column. Here is how my array looks like in a "string view":
@array = [
Machine1, 01/02/2016, 02/01/2016, 26
Machine2, 02/01/2016, 02/01/2016, 1
Machine3, 02/01/2016, 02/01/2016, 78
]
In this array, the whole "Machine1, 01/02/2016, 02/01/2016, 26" is considered a whole string in an array, and based last column (which I consider) which is: 26, 1, 78 <- I wish I could order then in a descending order: 78, 26, 1.
Sorry for the childish question.
Thanks in advance.