Sort question

Ben Rubinstein benr_mc at cogapp.com
Sun Oct 3 10:32:06 EDT 2010


This is really the same as Mark suggested, but should work even if the numbers 
aren't zero padded:

function sortByMonthAndDay tText
    set the itemDelimiter to "/"
    sort lines of tText ascending numeric by item 1 of (word 2 of each)
    sort lines of tText ascending numeric by item 2 of (word 2 of each)
    return tText
end mouseUp

(I think Mark probably meant "&" instead of "and")

Ben

On 03/10/2010 15:14, Yves COPPE wrote:
>
> Le 03-oct.-10 à 16:04, Mark Schonewille a écrit :
>
>> Hi Yves,
>>
>> What about this:
>>
>> set the itemDel to slash
>> sort lines of myList by item 2 of (word 2 of each) and item 1 of (word 2 of
>> each)
>>
>>
>
>
> Re,
>
> No, I don't receive the right answer



More information about the use-livecode mailing list