Re: Why won't this parse?
Re: Why won't this parse?
- Subject: Re: Why won't this parse?
- From: Paul Berkowitz <email@hidden>
- Date: Thu, 10 May 2001 09:31:43 -0700
On 5/10/01 9:01 AM, "David Graham" <email@hidden> wrote:
>
set AppleScript's text item delimiters to ASCII number 32 -- space
ASCII number 32 is not space. It's
51
You meant to say ASCII character 32. But why be so arcane and run this risk?
Why not:
set AppleScript's text item delimiters to {space}
or
set AppleScript's text item delimiters {" "}
--
Paul Berkowitz