Files
aiolauncher_scripts/pl-tests.lua
2021-07-31 09:44:13 +03:00

8 lines
167 B
Lua

stringx = require 'pl.stringx'
function onResume()
local string = "String with spaces"
local sList = stringx.split(string, " ")
ui:showText(sList[3])
end