...
Code Block | ||
---|---|---|
| ||
local Fruit = "Apple,Banana,Orange"; local List = Fruit:split(","); trace(List); |
You In this sample code, we’ve passed in “,” to split our list of fruits on each comma.
In the Translator’s Annotation Windows , you should see:
...
...
Code Block | ||
---|---|---|
| ||
local Fruit = "Apple,Banana,Orange"; local List = Fruit:split(","); trace(List); |
You In this sample code, we’ve passed in “,” to split our list of fruits on each comma.
In the Translator’s Annotation Windows , you should see:
...