Content deleted Content added
Cyborg Coder (talk | contribs) No edit summary |
Cyborg Coder (talk | contribs) No edit summary |
||
Line 41:
--local d, y = date:match("(%d+)%D+(%d+)")
local d = date:match("([1-3]%d)%D")
local y = date:match("(%d%d%d
local mnth = date:match("%a+") or ""
mnth = string.upper(string.sub(mnth, 1, 1)) .. string.sub(mnth, 2)
Line 49:
local out = date .. " = " .. d .. " " .. m .. " " .. y .. " " .. mnth
out = out .. " = " .. v
out = out .. d .. " " .. mnth .. " " .. y
return out .. "<br>"
end
|