I have a two dimensional array that I need to sort numerically. Here is a sample of the array:
[0] [1]
3 320
55B 250
26 100
55A 260
56 310
89 420
I need to order numerically by the [0] values. The values are stored as strings. I have figured how to sort arrays alphabetically and numerically but I can't figure out how to order this array because of the occasional A and B.