更改

添加498字节 、 2020年12月31日 (四) 20:53
建立内容为“p = {} function p.split(s) local parent, name parent, name = s:match("^(.+)/(.+)$") return parent, name end function p.parse(s) local type_flag,…”的新页面
p = {}

function p.split(s)
local parent, name
parent, name = s:match("^(.+)/(.+)$")
return parent, name
end

function p.parse(s)
local type_flag, full_name
type_flag, full_name = s:match("^([XW])/(.+)$")
if type_flag then
local base, sub
base, sub = p.split(full_name)
if base then
return type_flag, base, sub
else
return type_flag, full_name, nil
end
else
return nil, nil, s
end
end

return p