This commit is contained in:
Evgeny
2021-07-31 09:44:13 +03:00
parent 46407b5e78
commit 747a06ea1c
4 changed files with 17 additions and 4 deletions

7
pl-tests.lua Normal file
View File

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