I have the following array...
[ "global/20130102-001", "global/20131012-001, "country/uk/20121104-001" ]
I need to sort the array based on the numerical portion of the string. So the above would be sorted as:
[ "country/uk/20121104-001", "global/20130102-001", "global/20130112-001 ]
Is there a way to call .sort and ignore the first part of each element so I'm only sorting on the number?