The parse_csv method parses a string of comma-separated values into individual strings. The method understands quoted values (such that parsing 'foot, "leg, torso", elbow' produces three values) and ignores white space around delimiters.
parse_csv( input [, delimiter ] )
| Argument | Description | 
|---|---|
| input | (string) The string to parse. | 
| delimiter | (string) The delimiter to use (the default delimiter is ","). | 
(Strings). You can put them in a table like this:
local results = { parse_csv("cat,tree,house", ",") };
        
        |  |