Re: Help! From List to String and Back
Re: Help! From List to String and Back
- Subject: Re: Help! From List to String and Back
- From: Yosemite <email@hidden>
- Date: Thu, 25 Jan 2001 14:39:23 -0900
set x to "{{1, 2, 3, 4}, {\"a\", \"b\", \"c\"}}"
set y to run script ("set y to " & x & " as list")
-- hcir
mailto:email@hidden
>
>
If I use the scripting addition "Any2Str" from FaceSpan I get this:
>
>
Any2Str {{1, 2, 3, 4}, {"a", "b", "c"}}
>
>
--> "{{1, 2, 3, 4}, {\"a\", \"b\", \"c\"}}"
>
>
Is there a scripting addition that gets me back to:
>
>
{{1, 2, 3, 4}, {"a", "b", "c"}}
>
>
so that Applescript sees this as a list?