🟪sam.Util.parse_args
Description
Turn text into arguments.
Aguments
- string text
Returns
Example
local args = Util.parse_args('hi there "mr srlion!" ok.')
PrintTable(args)
-- output:
{
"hi",
"there",
"mr srlion!",
"ok."
}
Last updated
Was this helpful?