WIP: sprintf #21
@ -44,8 +44,13 @@ end
|
|||||||
-- %! for tostring(param)
|
-- %! for tostring(param)
|
||||||
-- which dumps tables
|
-- which dumps tables
|
||||||
function fmt(f, ...)
|
function fmt(f, ...)
|
||||||
local out, i = "", 1
|
local out, i = "", 0
|
||||||
for s in all(split(f,"%")) do
|
for s in all(split(f,"%")) do
|
||||||
|
if i == 0 then
|
||||||
|
-- before first format directive
|
||||||
|
out ..= s
|
||||||
|
i = 1
|
||||||
|
else
|
||||||
local m = s[1]
|
local m = s[1]
|
||||||
if m == "~" then
|
if m == "~" then
|
||||||
out ..= "%"
|
out ..= "%"
|
||||||
@ -62,6 +67,7 @@ function fmt(f, ...)
|
|||||||
end
|
end
|
||||||
out ..=sub(s,2)
|
out ..=sub(s,2)
|
||||||
end
|
end
|
||||||
|
end
|
||||||
return out
|
return out
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user