6 lines
148 B
AppleScript
6 lines
148 B
AppleScript
|
|
set my text item delimiters to ","
|
||
|
|
set tokens to the text items of "Hello,How,Are,You,Today"
|
||
|
|
|
||
|
|
set my text item delimiters to "."
|
||
|
|
log tokens as text
|