πͺsam.Util.parse_args
Description
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