StringVariable | A comma separated string. Can be either a value or @VarName (will upvar and read/write). |
Note that arguments of the form XxxVariable can take either a normal value or the name of a variable to read/write, prefixed by @. See About Using @ for details.
% set String "one,two, three"
one,two, three
% CommaSeparatedStringToList $String
one two three
% set String "one,two, three"
one,two, three
% CommaSeparatedStringToList @String
one two three
% puts $String
one two three