Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

This is super useful for many problems. The split method on a string allows you to split a string into a list based on the delimiter you specify. Copy paste this code into the translator:

local Fruit = "Apple,Banana,Orange";
local List = Fruit:split(",");
trace(List);

  • No labels