Well I have an array that looks like this:
array[0] = "data1|data2|data3|data4";
array[1] = "data1|data2|data3|data4";
I need the array sorted by data3. The only way I can think of doing it is by cycling through the array - exploding it and then adding the data to another array. Is that right?
|