Re: how to get the zero's out of a list
Re: how to get the zero's out of a list
- Subject: Re: how to get the zero's out of a list
- From: g3pb <email@hidden>
- Date: Thu, 08 Mar 2001 14:52:34 -0900
set aL to {"0", "1", "0", "2"}
repeat with i from 1 to number of items in aL
if item i in aL is "0" then
set item i in aL to ""
end if
end repeat
-- hcir
mailto:email@hidden
>
--> becomes {"0", "1", "0", "4"}
>
>
--> becomes {"0", "1", "0", "4"}
>
but i want {"", "1", "", "4"}
>
>
>
How, oh how do i do this ?