Re: weird TID?
Re: weird TID?
- Subject: Re: weird TID?
- From: Peter Beentje <email@hidden>
- Date: Thu, 23 Oct 2003 23:03:13 +0100
set AppleScript's text item delimiters to ","
set tempMonth to (text item 2 of startDate) --> January 30
set AppleScript's text item delimiters to {space}
set tempData1 to text item 2 of tempMonth --> should be 30 but I get
January
set tempData to text item 1 of tempMonth --> January
step 2 gets you " January 30" (note the space before the J)
change step 1 to ...."delimiters to ", " (comma-space) and you're away.
TIA
np
-Pete
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.
References: | |
| >weird TID? (From: Robert Poland <email@hidden>) |