Re: Accessing lasts characters of a string
Re: Accessing lasts characters of a string
- Subject: Re: Accessing lasts characters of a string
- From: Luther Fuller <email@hidden>
- Date: Wed, 12 Mar 2008 17:23:15 -0500
You will find this at the top of page 105 in the new
AppleScriptLanguageGuide.pdf
get text 3 thru 7 of "Try this at home"
--result: "y thi"
The result of a similar statement using the character element instead
of the text element is a list:
get characters 3 thru 7 of "Try this at home"
--result: {"y", " ", "t", "h", "i"}
What I could not find was a definition of 'characters' or the
'character element'.
_______________________________________________
Do not post admin requests to the list. They will be ignored.
AppleScript-Users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
Archives: http://lists.apple.com/archives/applescript-users
This email sent to email@hidden