Re: Sifting a list sans loop
Re: Sifting a list sans loop
- Subject: Re: Sifting a list sans loop
- From: ehsan saffari <email@hidden>
- Date: Tue, 29 Jan 2002 08:24:15 -0600
On 29/01/2002 02:52, Helmut Fuchs, email@hidden wrote:
>
>At 2:30 Uhr -0600 29.01.2002, ehsan saffari wrote:
>
>got it's text
>
>set myTxt to myData's Text --> 5313 items
>
>
Actually you didn't get a list here, you got a string!
no, it's a list, not a string:
set myData to {"a", "b", {"c", "d"}}
set myTxt to myData's text --> {"a", "b"}
cheers
ehsan