3,314
回編集
編集の要約なし |
編集の要約なし |
||
103行目: | 103行目: | ||
end | end | ||
function p.split( | function p.split(sep,trgt) | ||
if | if trgt == nil then return {} end | ||
local t = {} | local t = {} | ||
i = 1 | i = 1 | ||
for str in string.gmatch( | for str in string.gmatch(sep, "([^"..trgt.."]+)") do | ||
t[i] = str | t[i] = str | ||
i = i + 1 | i = i + 1 |
回編集