You do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
local p = {}
function split(str, sep, max)
local z = #sep; sep = '^.-'..sep:gsub('[$%%()*+%-.?%[%]^]', '%%%0')
local t,n,p, q,r = {},1,1, str:find(sep)
while q and n~=max do
t[n],n,p = str:sub(q,r-z),n+1,r+1
q,r = str:find(sep,p)
end
t[n] = str:sub(p)
return t
end
function trim(s)
return s:match( "^%s*(.-)%s*$" )
end
function toMap(entries)
local fields = split(entries, '$$')
local map = {}
000
1:0
Template used on this page:
Return to Module:SoundtrackTable.