hi I have an Array List of <strings> holding phone numbers and index numbers separated by tab
example:
45 0876565645
14 0876476453
09 0876575657
111 0876575657
8211 0876575657
my question is how would I sort this list in order of first group of numbers while ignoring the phone numbers?
example:
09...
14...
45...
111...
8211...
any ideas would be great as all I can think of is a load of if statements but this list is 100+ long so that probably wont work