9 lines
231 B
Text
9 lines
231 B
Text
input = "Hello,How,Are,You,Today"
|
|
_player.itemDelimiter = ","
|
|
output = ""
|
|
repeat with i = 1 to input.item.count
|
|
put input.item[i]&"." after output
|
|
end repeat
|
|
delete the last char of output
|
|
put output
|
|
-- "Hello.How.Are.You.Today"
|