array[string] sam.Util.parse_args( string text )
Turn text into arguments.
local args = Util.parse_args('hi there "mr srlion!" ok.') PrintTable(args) -- output: { "hi", "there", "mr srlion!", "ok." }
Last updated 2 years ago